ssb: Fix channel status not updating reliably.
All checks were successful
Build Tilde Friends / Build-All (push) Successful in 23m2s

This commit is contained in:
2024-12-27 13:23:29 -05:00
parent c3bbab35e2
commit 683fdbb02a
2 changed files with 2 additions and 2 deletions

View File

@ -358,7 +358,7 @@ class TfElement extends LitElement {
this.load_channels_latest(this.following);
} else if (!this.loading_channels_latest_scheduled) {
this.loading_channels_latest_scheduled++;
setTimeout(this._schedule_load_channels_latest_timer, 5000);
setTimeout(this._schedule_load_channels_latest_timer.bind(this), 5000);
}
}