ssb: Fix various channel / unread status / show new messages bugs.
All checks were successful
Build Tilde Friends / Build-All (push) Successful in 16m35s

This commit is contained in:
2024-12-22 13:16:56 -05:00
parent 8a67eba5fc
commit 79ff505963
4 changed files with 71 additions and 37 deletions

View File

@ -113,7 +113,7 @@ class TfTabNewsElement extends LitElement {
if (
this.channels_latest[channel] &&
(this.channels_unread[channel] === undefined ||
this.channels_unread[channel] < this.channels_latest[channel])
this.channels_unread[channel] <= this.channels_latest[channel])
) {
return '🔵';
}