Move to rocket's async branch

This commit is contained in:
timokoesters 2020-04-04 20:50:01 +02:00
parent 8b8381bcc0
commit 884dc2867d
No known key found for this signature in database
GPG key ID: 356E705610F626D5
4 changed files with 479 additions and 327 deletions

View file

@ -270,8 +270,8 @@ fn sync_route(
notification_count: None,
},
timeline: sync_events::Timeline {
limited: None,
prev_batch: None,
limited: Some(false),
prev_batch: Some("".to_owned()),
events: room_events,
},
state: sync_events::State { events: Vec::new() },
@ -328,5 +328,6 @@ fn main() {
],
)
.manage(data)
.launch();
.launch()
.unwrap();
}