ssb: Allow unread status for the mentions tab.
Some checks failed
Build Tilde Friends / Build-All (push) Has been cancelled

This commit is contained in:
2025-06-12 12:25:58 -04:00
parent 67861f0f33
commit 388b829ec1
3 changed files with 5 additions and 4 deletions

View File

@ -632,8 +632,8 @@ class TfMessageElement extends LitElement {
}
allow_unread() {
return;
!this.channel.startsWith('@') && !this.channel.startsWith('%');
return this.channel == '@' ||
(!this.channel.startsWith('@') && !this.channel.startsWith('%'));
}
render_unread_icon() {