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:
Cory McWilliams 2024-12-27 13:23:29 -05:00
parent c3bbab35e2
commit 683fdbb02a
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
{
"type": "tildefriends-app",
"emoji": "🦀",
"previous": "&ZVNlEr66wkhZpf06nJJgIEBxO0LK+nvSnJ6vgD9JPkg=.sha256"
"previous": "&XjeQP84BXBKSEViNV3c10QisKyGv14Kngfwx3IqorX8=.sha256"
}

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);
}
}