Fixed bookmarks not being loaded properly

This commit is contained in:
veeso 2021-05-22 10:27:37 +02:00
parent 2f2bb20550
commit f738ce90e0

View file

@ -168,14 +168,17 @@ impl Activity for AuthActivity {
if let Err(err) = enable_raw_mode() {
error!("Failed to enter raw mode: {}", err);
}
// If check for updates is enabled, check for updates
self.check_for_updates();
// Initialize view
self.init();
// Init bookmarks client
if self.bookmarks_client.is_none() {
self.init_bookmarks_client();
// View bookarmsk
self.view_bookmarks();
self.view_recent_connections();
}
// If check for updates is enabled, check for updates
self.check_for_updates();
// Verify error state from context
if let Some(err) = self.context.as_mut().unwrap().get_error() {
self.mount_error(err.as_str());