1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-10 21:50:15 +00:00

updated to hourly fetch instead of every 15 minutes

This commit is contained in:
maxkpower
2025-11-18 18:07:44 +01:00
parent 0ea9778aea
commit 0118fa1dd2

View File

@@ -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<void>();
update$ = this._triggerUpdate$.pipe(