From 683fdbb02a1945d30b10e3fc25239e23115b3eec Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Fri, 27 Dec 2024 13:23:29 -0500 Subject: [PATCH] ssb: Fix channel status not updating reliably. --- apps/ssb.json | 2 +- apps/ssb/tf-app.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/ssb.json b/apps/ssb.json index e6be9196..e8688810 100644 --- a/apps/ssb.json +++ b/apps/ssb.json @@ -1,5 +1,5 @@ { "type": "tildefriends-app", "emoji": "🦀", - "previous": "&ZVNlEr66wkhZpf06nJJgIEBxO0LK+nvSnJ6vgD9JPkg=.sha256" + "previous": "&XjeQP84BXBKSEViNV3c10QisKyGv14Kngfwx3IqorX8=.sha256" } diff --git a/apps/ssb/tf-app.js b/apps/ssb/tf-app.js index 11e2f923..b10c26aa 100644 --- a/apps/ssb/tf-app.js +++ b/apps/ssb/tf-app.js @@ -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); } }