Treat replies similarly to mentions for notifications

This commit is contained in:
trevor-signal
2026-02-20 13:31:09 -05:00
committed by GitHub
parent e4486fffba
commit e7d1efbf99
3 changed files with 20 additions and 9 deletions

View File

@@ -97,12 +97,12 @@ export const NOTIFICATION_PROFILE_ID_LENGTH = 16;
export function shouldNotify({
isCall,
isMention,
isMentionOrReply,
conversationId,
activeProfile,
}: {
isCall: boolean;
isMention: boolean;
isMentionOrReply: boolean;
conversationId: string;
activeProfile: NotificationProfileType | undefined;
}): boolean {
@@ -114,7 +114,7 @@ export function shouldNotify({
return true;
}
if (isMention && activeProfile.allowAllMentions) {
if (isMentionOrReply && activeProfile.allowAllMentions) {
return true;
}