From c92264794b4fd55648d6c7e3f6bb0c58f7d43496 Mon Sep 17 00:00:00 2001 From: Dani Palou Date: Fri, 27 Mar 2020 12:06:34 +0100 Subject: [PATCH] MOBILE-3387 core: Increase time of fetch site info cron task --- src/providers/handlers/site-info-cron-handler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/handlers/site-info-cron-handler.ts b/src/providers/handlers/site-info-cron-handler.ts index c8e39cd58..32f23b929 100644 --- a/src/providers/handlers/site-info-cron-handler.ts +++ b/src/providers/handlers/site-info-cron-handler.ts @@ -48,7 +48,7 @@ export class CoreSiteInfoCronHandler implements CoreCronHandler { * @return Interval time (in milliseconds). */ getInterval(): number { - return 3600000; // 1 hour. + return 10800000; // 3 hours. } /**