chore: Update translations

This commit is contained in:
Kieran 2023-09-05 14:17:02 +00:00
parent 532ab8403d
commit e99f323cfa

View File

@ -114,7 +114,7 @@ export class FollowsFeedCache extends RefreshFeedCache<TaggedNostrEvent> {
async backFillIfMissing(system: SystemInterface, keys: Array<string>) {
const start = unixNowMs();
const everything = await this.table?.toArray();
if((everything?.length ?? 0) > 0) {
if ((everything?.length ?? 0) > 0) {
const allKeys = new Set(everything?.map(a => a.pubkey));
const missingKeys = keys.filter(a => !allKeys.has(a));
await this.backFill(system, missingKeys);