From 517db23cbf90eab8c2fe4b303cc55947e12456f7 Mon Sep 17 00:00:00 2001 From: Timon Masberg Date: Thu, 15 Feb 2024 16:48:23 +0100 Subject: [PATCH] chore(spa): add todo for update check interval --- apps/spa/src/app/update.service.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/spa/src/app/update.service.ts b/apps/spa/src/app/update.service.ts index dbee4b87..cff6a53d 100644 --- a/apps/spa/src/app/update.service.ts +++ b/apps/spa/src/app/update.service.ts @@ -7,6 +7,7 @@ import { filter } from 'rxjs'; }) export class UpdateService { constructor(swUpdate: SwUpdate) { + // todo: create an interval to check for updates swUpdate.versionUpdates .pipe( filter((evt): evt is VersionReadyEvent => evt.type === 'VERSION_READY'),