From 08c097e1767f5344f3fab768eb9adf662c60995e Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Thu, 22 May 2025 10:26:59 -0400 Subject: [PATCH] ssb: Fix a source of stale user information. --- apps/ssb.json | 2 +- apps/ssb/tf-app.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/ssb.json b/apps/ssb.json index 26eb0ce2..590325b5 100644 --- a/apps/ssb.json +++ b/apps/ssb.json @@ -1,5 +1,5 @@ { "type": "tildefriends-app", "emoji": "🦀", - "previous": "&nd1gmPKrvLdkxW9D4Zct/0hD+iwLWjkF1gxaebFQ5I8=.sha256" + "previous": "&InyKeZNpwCYY7BMR9wexMue8jzoMLxBv7moIY4QTBv0=.sha256" } diff --git a/apps/ssb/tf-app.js b/apps/ssb/tf-app.js index 9ae18aa9..83212138 100644 --- a/apps/ssb/tf-app.js +++ b/apps/ssb/tf-app.js @@ -417,11 +417,11 @@ class TfElement extends LitElement { ); for (let row of info) { users[row.author] = Object.assign( + users[row.author], { seq: row.max_sequence, ts: row.max_ts, - }, - users[row.author] + } ); } return users;