Use Result for last_notification_read as zero-default not appropriate.

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk
2025-10-29 22:11:42 +00:00
parent 9c5caa3a5f
commit 1f0cfec5ca
3 changed files with 6 additions and 4 deletions

View File

@@ -812,6 +812,7 @@ async fn load_joined_room(
services
.pusher
.last_notification_read(sender_user, room_id)
.ok()
})
.into();
@@ -872,8 +873,9 @@ async fn load_joined_room(
.map(Into::into)
});
let send_notification_counts =
last_notification_read.is_none_or(|last_count| last_count.gt(&since));
let send_notification_counts = last_notification_read
.flatten()
.is_none_or(|last_count| last_count.gt(&since));
let notification_count: OptionFuture<_> = send_notification_counts
.then(|| {

View File

@@ -102,6 +102,7 @@ async fn matcher(
services
.pusher
.last_notification_read(sender_user, &room_id)
.unwrap_or_default()
})
.into();