Browse Source

Reformatted

brokenjoinfix
Torsten Flammiger 4 years ago
parent
commit
ba6d72f3f9
  1. 5
      src/database/users.rs

5
src/database/users.rs

@ -147,7 +147,10 @@ impl Users {
match utils::string_from_bytes(username) {
Ok(u) => Some(u),
Err(e) => {
warn!("Failed to parse username while calling get_local_users(): {}", e.to_string());
warn!(
"Failed to parse username while calling get_local_users(): {}",
e.to_string()
);
None
}
}

Loading…
Cancel
Save