ssb: Clean up outdated dynamic blob_wants_cache entries.
Some checks failed
Build Tilde Friends / Build-All (push) Has been cancelled

This commit is contained in:
2025-05-21 17:44:00 -04:00
parent 0d7dfd8c9e
commit 8a0e190a86
2 changed files with 14 additions and 1 deletions

View File

@ -224,7 +224,9 @@ class TfElement extends LitElement {
for (let id of ids_out_of_date) {
if (!cache.about[id]?.seq) {
cache.about[id] = Object.assign(cache.about[id] ?? {}, {seq: users[id]?.seq ?? 0});
cache.about[id] = Object.assign(cache.about[id] ?? {}, {
seq: users[id]?.seq ?? 0,
});
}
}