ssb: Allow unread status for the mentions tab.
Some checks failed
Build Tilde Friends / Build-All (push) Has been cancelled
Some checks failed
Build Tilde Friends / Build-All (push) Has been cancelled
This commit is contained in:
@ -276,7 +276,8 @@ class TfTabNewsFeedElement extends LitElement {
|
||||
}
|
||||
|
||||
unread_allowed() {
|
||||
return !this.hash.startsWith('#%') && !this.hash.startsWith('#@');
|
||||
return this.hash == '#@' ||
|
||||
(!this.hash.startsWith('#%') && !this.hash.startsWith('#@'));
|
||||
}
|
||||
|
||||
async load_more() {
|
||||
|
Reference in New Issue
Block a user