mirror of
https://github.com/hzrd149/nostrudel.git
synced 2025-04-03 09:28:23 +02:00
fix typo with mention notifications
This commit is contained in:
parent
1eb6c498a6
commit
1aad1271dc
@ -56,10 +56,10 @@ export default class AccountNotifications {
|
||||
// is the "p" tag directly mentioned in the content
|
||||
const isMentioned = isPTagMentionedInContent(event, this.pubkey);
|
||||
// is the pubkey mentioned in any way in the content
|
||||
const isQuoted = !isMentioned && getPubkeysMentionedInContent(event.content).includes(this.pubkey);
|
||||
const isQuoted = getPubkeysMentionedInContent(event.content).includes(this.pubkey);
|
||||
|
||||
if (isMentioned || isQuoted) e[typeSymbol] = NotificationType.Mention;
|
||||
if (isReply(event)) e[typeSymbol] = NotificationType.Reply;
|
||||
else if (isReply(event)) e[typeSymbol] = NotificationType.Reply;
|
||||
}
|
||||
return e;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user