ssb: Dispatch blob wants immediately when added as the result of a web request.
All checks were successful
Build Tilde Friends / Build-All (push) Successful in 32m24s

This commit is contained in:
2025-05-22 10:56:30 -04:00
parent 996f9abaa2
commit 4931c489ed
3 changed files with 13 additions and 10 deletions

View File

@ -421,13 +421,10 @@ class TfElement extends LitElement {
[JSON.stringify(Object.keys(users))]
);
for (let row of info) {
users[row.author] = Object.assign(
users[row.author],
{
seq: row.max_sequence,
ts: row.max_ts,
}
);
users[row.author] = Object.assign(users[row.author], {
seq: row.max_sequence,
ts: row.max_ts,
});
}
return users;
}