From 04d8f7d9aa541fdf74cd38e23b1254c1371f7693 Mon Sep 17 00:00:00 2001 From: Cody Henthorne Date: Mon, 3 Nov 2025 11:48:45 -0500 Subject: [PATCH] Fix incorrect mention notification setting sync. --- .../org/thoughtcrime/securesms/storage/StorageSyncModels.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/org/thoughtcrime/securesms/storage/StorageSyncModels.kt b/app/src/main/java/org/thoughtcrime/securesms/storage/StorageSyncModels.kt index f180838efd..5ae27ee16e 100644 --- a/app/src/main/java/org/thoughtcrime/securesms/storage/StorageSyncModels.kt +++ b/app/src/main/java/org/thoughtcrime/securesms/storage/StorageSyncModels.kt @@ -248,7 +248,7 @@ object StorageSyncModels { archived = recipient.syncExtras.isArchived markedUnread = recipient.syncExtras.isForcedUnread mutedUntilTimestamp = recipient.muteUntil - dontNotifyForMentionsIfMuted = recipient.mentionSetting == RecipientTable.MentionSetting.ALWAYS_NOTIFY + dontNotifyForMentionsIfMuted = recipient.mentionSetting == RecipientTable.MentionSetting.DO_NOT_NOTIFY hideStory = recipient.extras != null && recipient.extras.hideStory() avatarColor = localToRemoteAvatarColor(recipient.avatarColor) storySendMode = when (groups.getShowAsStoryState(groupId)) {