Skip to content

Commit

Permalink
Fix style & clippy issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jmartinesp committed Nov 5, 2024
1 parent ba5ba66 commit 06df59f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bindings/matrix-sdk-ffi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ mod notification;
mod notification_settings;
mod platform;
mod room;
mod room_alias;
mod room_directory_search;
mod room_info;
mod room_list;
Expand All @@ -30,7 +31,6 @@ mod timeline_event_filter;
mod tracing;
mod utils;
mod widget;
mod room_alias;

use async_compat::TOKIO1 as RUNTIME;
use matrix_sdk::ruma::events::room::{
Expand Down
2 changes: 1 addition & 1 deletion bindings/matrix-sdk-ffi/src/room_alias.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ fn room_alias_from_room_display_name(room_name: String) -> String {
let sanitised = symbol_regex.replace_all(&sanitised, "");
// Lowercased
sanitised.to_lowercase()
}
}

0 comments on commit 06df59f

Please sign in to comment.