We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d317e5d commit 7130392Copy full SHA for 7130392
labs/multiverse/src/main.rs
@@ -64,6 +64,10 @@ async fn main() -> anyhow::Result<()> {
64
let config_path = env::args().nth(2).unwrap_or("/tmp/".to_owned());
65
let client = configure_client(server_name, config_path).await?;
66
67
+ let ec = client.event_cache();
68
+ ec.subscribe().unwrap();
69
+ ec.enable_storage().unwrap();
70
+
71
init_error_hooks()?;
72
let terminal = init_terminal()?;
73
@@ -256,6 +260,7 @@ impl App {
256
260
257
261
if let Err(err) = ui_room.init_timeline_with_builder(builder).await {
258
262
error!("error when creating default timeline: {err}");
263
+ continue;
259
264
}
265
266
// Save the timeline in the cache.
0 commit comments