syncv3: fix bump types and only set timestamp if we find an event

This commit is contained in:
morguldir 2024-08-30 11:39:14 +02:00
parent 26a6d349dc
commit f8cf57c1fb
No known key found for this signature in database
GPG Key ID: 5A6025D4F6E7A8A3
1 changed files with 3 additions and 3 deletions

View File

@ -45,8 +45,8 @@ use crate::{
const SINGLE_CONNECTION_SYNC: &str = "single_connection_sync";
const DEFAULT_BUMP_TYPES: &[TimelineEventType] = &[
TimelineEventType::Message,
TimelineEventType::Encrypted,
TimelineEventType::RoomMessage,
TimelineEventType::RoomEncrypted,
TimelineEventType::Sticker,
TimelineEventType::CallInvite,
TimelineEventType::PollStart,
@ -1549,8 +1549,8 @@ pub(crate) async fn sync_events_v4_route(
let mut timestamp: Option<_> = None;
for (_, pdu) in timeline_pdus {
timestamp = Some(MilliSecondsSinceUnixEpoch(pdu.origin_server_ts));
if DEFAULT_BUMP_TYPES.contains(pdu.event_type()) {
timestamp = Some(MilliSecondsSinceUnixEpoch(pdu.origin_server_ts));
break;
}
}