File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ impl Widget for RoomsListHeader {
131131 }
132132}
133133
134- /// Actions that can be handled by or emitted from the `RoomsListHeader`.
134+ /// Actions that can be handled by the `RoomsListHeader`.
135135#[ derive( Debug ) ]
136136pub enum RoomsListHeaderAction {
137137 /// An action received by the RoomsListHeader that will show or hide
Original file line number Diff line number Diff line change @@ -1866,7 +1866,7 @@ async fn start_matrix_client_login_and_sync(rt: Handle) {
18661866 } ,
18671867 None => {
18681868 error ! ( "BUG: login_receiver hung up unexpectedly" ) ;
1869- let err = format ! ( "Please restart Robrix.\n \n Unable to listen for login requests." ) ;
1869+ let err = String :: from ( "Please restart Robrix.\n \n Unable to listen for login requests." ) ;
18701870 Cx :: post_action ( LoginAction :: LoginFailure ( err. clone ( ) ) ) ;
18711871 enqueue_rooms_list_update ( RoomsListUpdate :: Status {
18721872 status : err,
@@ -2244,7 +2244,7 @@ async fn space_service_loop(space_service: SpaceService) -> Result<()> {
22442244 }
22452245 VectorDiff :: Set { index, value : changed_space } => {
22462246 if LOG_SPACE_SERVICE_DIFFS { log ! ( "space_service: diff Set at {index}" ) ; }
2247- // TOOD : update this space
2247+ // TODO : update this space
22482248 // let changed_space = SpaceListServiceSpaceInfo::from_space(changed_space.into_inner()).await;
22492249 // if let Some(old_space) = all_joined_spaces.get(index) {
22502250 // update_space(old_space, &changed_space, &space_service_service).await?;
You can’t perform that action at this time.
0 commit comments