mirror of
https://gitlab.com/famedly/conduit.git
synced 2024-11-15 17:58:17 -07:00
perf: remove unnecessary async
This commit is contained in:
parent
17dd8cb918
commit
07bb369c5c
@ -1197,14 +1197,11 @@ pub async fn sync_events_v4_route(
|
||||
|
||||
if globalsince == 0 {
|
||||
if let Some(conn_id) = &body.conn_id {
|
||||
services()
|
||||
.users
|
||||
.forget_sync_request_connection(
|
||||
sender_user.clone(),
|
||||
sender_device.clone(),
|
||||
conn_id.clone(),
|
||||
)
|
||||
.await
|
||||
services().users.forget_sync_request_connection(
|
||||
sender_user.clone(),
|
||||
sender_device.clone(),
|
||||
conn_id.clone(),
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
@ -1474,17 +1471,14 @@ pub async fn sync_events_v4_route(
|
||||
);
|
||||
|
||||
if let Some(conn_id) = &body.conn_id {
|
||||
services()
|
||||
.users
|
||||
.update_sync_known_rooms(
|
||||
sender_user.clone(),
|
||||
sender_device.clone(),
|
||||
conn_id.clone(),
|
||||
list_id,
|
||||
new_known_rooms,
|
||||
globalsince,
|
||||
)
|
||||
.await;
|
||||
services().users.update_sync_known_rooms(
|
||||
sender_user.clone(),
|
||||
sender_device.clone(),
|
||||
conn_id.clone(),
|
||||
list_id,
|
||||
new_known_rooms,
|
||||
globalsince,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@ -1516,29 +1510,23 @@ pub async fn sync_events_v4_route(
|
||||
}
|
||||
|
||||
if let Some(conn_id) = &body.conn_id {
|
||||
services()
|
||||
.users
|
||||
.update_sync_known_rooms(
|
||||
sender_user.clone(),
|
||||
sender_device.clone(),
|
||||
conn_id.clone(),
|
||||
"subscriptions".to_owned(),
|
||||
known_subscription_rooms,
|
||||
globalsince,
|
||||
)
|
||||
.await;
|
||||
services().users.update_sync_known_rooms(
|
||||
sender_user.clone(),
|
||||
sender_device.clone(),
|
||||
conn_id.clone(),
|
||||
"subscriptions".to_owned(),
|
||||
known_subscription_rooms,
|
||||
globalsince,
|
||||
);
|
||||
}
|
||||
|
||||
if let Some(conn_id) = &body.conn_id {
|
||||
services()
|
||||
.users
|
||||
.update_sync_subscriptions(
|
||||
sender_user.clone(),
|
||||
sender_device.clone(),
|
||||
conn_id.clone(),
|
||||
body.room_subscriptions,
|
||||
)
|
||||
.await;
|
||||
services().users.update_sync_subscriptions(
|
||||
sender_user.clone(),
|
||||
sender_device.clone(),
|
||||
conn_id.clone(),
|
||||
body.room_subscriptions,
|
||||
);
|
||||
}
|
||||
|
||||
let mut rooms = BTreeMap::new();
|
||||
|
@ -45,7 +45,7 @@ impl Service {
|
||||
self.db.exists(user_id)
|
||||
}
|
||||
|
||||
pub async fn forget_sync_request_connection(
|
||||
pub fn forget_sync_request_connection(
|
||||
&self,
|
||||
user_id: OwnedUserId,
|
||||
device_id: OwnedDeviceId,
|
||||
@ -186,7 +186,7 @@ impl Service {
|
||||
cached.known_rooms.clone()
|
||||
}
|
||||
|
||||
pub async fn update_sync_subscriptions(
|
||||
pub fn update_sync_subscriptions(
|
||||
&self,
|
||||
user_id: OwnedUserId,
|
||||
device_id: OwnedDeviceId,
|
||||
@ -212,7 +212,7 @@ impl Service {
|
||||
cached.subscriptions = subscriptions;
|
||||
}
|
||||
|
||||
pub async fn update_sync_known_rooms(
|
||||
pub fn update_sync_known_rooms(
|
||||
&self,
|
||||
user_id: OwnedUserId,
|
||||
device_id: OwnedDeviceId,
|
||||
|
Loading…
Reference in New Issue
Block a user