File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
matrix-sdk-appservice/tests Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -294,7 +294,7 @@ async fn test_appservice_on_sub_path() -> Result<()> {
294
294
295
295
let members = appservice
296
296
. get_cached_client ( None ) ?
297
- . get_room ( & room_id)
297
+ . get_room ( room_id)
298
298
. expect ( "Expected room to be available" )
299
299
. members_no_sync ( )
300
300
. await ?;
Original file line number Diff line number Diff line change @@ -755,7 +755,7 @@ impl BaseClient {
755
755
o. update_tracked_users ( user_ids) . await
756
756
}
757
757
758
- o. update_tracked_users ( user_ids. iter ( ) . map ( |x| & * * x) ) . await
758
+ o. update_tracked_users ( user_ids. iter ( ) . map ( |x| & * * x) ) . await ;
759
759
}
760
760
}
761
761
Original file line number Diff line number Diff line change @@ -1205,7 +1205,7 @@ impl OlmMachine {
1205
1205
/// If the user is already known to the Olm machine it will not be
1206
1206
/// considered for a key query.
1207
1207
pub async fn update_tracked_users ( & self , users : impl IntoIterator < Item = & UserId > ) {
1208
- self . identity_manager . update_tracked_users ( users) . await
1208
+ self . identity_manager . update_tracked_users ( users) . await ;
1209
1209
}
1210
1210
1211
1211
/// Get a specific device of a user.
You can’t perform that action at this time.
0 commit comments