Skip to content

Commit

Permalink
Linter
Browse files Browse the repository at this point in the history
  • Loading branch information
WRadoslaw committed Dec 5, 2023
1 parent abd6290 commit 1eba2c4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/utils/VideoRelevanceManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ export class VideoRelevanceManager {
}

scheduleRecalcForChannel(id: string | null | undefined) {
id && this.channelsToUpdate.add(id)
if (id) {
this.channelsToUpdate.add(id)
}
}

async updateVideoRelevanceValue(em: EntityManager, forceUpdateAll?: boolean) {
Expand Down

0 comments on commit 1eba2c4

Please sign in to comment.