From 988eede36f4002ac429fd8f1ed87b2178088dbb4 Mon Sep 17 00:00:00 2001 From: Fredrik Burmester Date: Thu, 20 Feb 2025 17:23:55 +0100 Subject: [PATCH] fix: change to 10 min as thie is the default and min value --- utils/background-tasks.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/background-tasks.ts b/utils/background-tasks.ts index 4926000e..70ac9f90 100644 --- a/utils/background-tasks.ts +++ b/utils/background-tasks.ts @@ -8,7 +8,7 @@ export const BACKGROUND_FETCH_TASK = "background-fetch"; export async function registerBackgroundFetchAsync() { try { BackgroundFetch.registerTaskAsync(BACKGROUND_FETCH_TASK, { - minimumInterval: 3 * 60, // 1 minutes + minimumInterval: 10 * 60, // 1 minutes stopOnTerminate: false, // android only, startOnBoot: false, // android only });