Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/login/login_screen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,7 @@ impl MatchEvent for LoginScreen {
password_input.toggle_is_password(cx);
show_pw_button.set_visible(cx, !self.password_visible);
hide_pw_button.set_visible(cx, self.password_visible);
password_input.set_key_focus(cx);
self.redraw(cx);
}

Expand Down
8 changes: 0 additions & 8 deletions src/sliding_sync.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2639,14 +2639,6 @@ async fn start_matrix_client_login_and_sync(rt: Handle) {
log!("matrix worker task ended with error due to logout: {e:?}");
} else {
error!("Error: matrix worker task ended:\n\t{e:?}");
rooms_list::enqueue_rooms_list_update(RoomsListUpdate::Status {
status: e.to_string(),
});
enqueue_popup_notification(
format!("Rooms list update error: {e}"),
PopupKind::Error,
None,
);
}
},
Err(e) => {
Expand Down
Loading