fix: time

This commit is contained in:
Fredrik Burmester
2025-02-20 20:34:08 +01:00
parent 8fe0089131
commit 268e93effb

View File

@@ -31,7 +31,7 @@ export const BACKGROUND_FETCH_TASK_RECENTLY_ADDED =
export async function registerBackgroundFetchAsyncRecentlyAdded() {
try {
BackgroundFetch.registerTaskAsync(BACKGROUND_FETCH_TASK_RECENTLY_ADDED, {
minimumInterval: 60 * 60, // 60 minutes
minimumInterval: 10 * 60, // 10 minutes
stopOnTerminate: false, // android only,
startOnBoot: true, // android only
});