From 0118fa1dd2c680c0a07934a8940f6d871a6d0755 Mon Sep 17 00:00:00 2001 From: maxkpower Date: Tue, 18 Nov 2025 18:07:44 +0100 Subject: [PATCH] updated to hourly fetch instead of every 15 minutes --- .../dirt/phishing-detection/services/phishing-data.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/browser/src/dirt/phishing-detection/services/phishing-data.service.ts b/apps/browser/src/dirt/phishing-detection/services/phishing-data.service.ts index 0755594c7d5..13d435f90ed 100644 --- a/apps/browser/src/dirt/phishing-detection/services/phishing-data.service.ts +++ b/apps/browser/src/dirt/phishing-detection/services/phishing-data.service.ts @@ -96,7 +96,7 @@ export class PhishingDataService { // How often are new domains added to the remote? readonly UPDATE_INTERVAL_DURATION = 24 * 60 * 60 * 1000; // 24 hours - readonly EXEMPTIONS_UPDATE_INTERVAL_DURATION = 15 * 60 * 1000; // 15 minutes + readonly EXEMPTIONS_UPDATE_INTERVAL_DURATION = 60 * 60 * 1000; // 1 hour private _triggerUpdate$ = new Subject(); update$ = this._triggerUpdate$.pipe(