ssb: Switch to a more brute force about-gathering approach. I think if I start with this and avoid querying all known accounts up-front, we will be plenty fast.
Some checks failed
Build Tilde Friends / Build-All (push) Failing after 5m12s
Some checks failed
Build Tilde Friends / Build-All (push) Failing after 5m12s
This commit is contained in:
@ -98,7 +98,9 @@ class TfTabNewsElement extends LitElement {
|
||||
|
||||
unread_status(channel) {
|
||||
if (channel === undefined) {
|
||||
if (Object.keys(this.channels_unread).some(x => this.unread_status(x))) {
|
||||
if (
|
||||
Object.keys(this.channels_unread).some((x) => this.unread_status(x))
|
||||
) {
|
||||
return '✉️ ';
|
||||
}
|
||||
} else if (
|
||||
|
Reference in New Issue
Block a user