diff --git a/packages/app/src/Cache/FollowsFeed.ts b/packages/app/src/Cache/FollowsFeed.ts index 1023cd67..2bd34f88 100644 --- a/packages/app/src/Cache/FollowsFeed.ts +++ b/packages/app/src/Cache/FollowsFeed.ts @@ -114,7 +114,7 @@ export class FollowsFeedCache extends RefreshFeedCache { async backFillIfMissing(system: SystemInterface, keys: Array) { 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);