Skip to content
Snippets Groups Projects
Unverified Commit b11f041f authored by tec's avatar tec
Browse files

Match lower case TLAs

parent b805ec70
No related merge requests found
Pipeline #189 failed with stages
in 1 hour, 35 minutes, and 15 seconds
...@@ -184,7 +184,7 @@ impl Commands { ...@@ -184,7 +184,7 @@ impl Commands {
if name.len() != 3 { if name.len() != 3 {
None None
} else { } else {
match database::get_member_info_from_tla(&name) { match database::get_member_info_from_tla(&name.to_uppercase()) {
Ok(member) => Some(member), Ok(member) => Some(member),
Err(_) => None, Err(_) => None,
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment