diff --git a/apps/fetcher/src/app/trackers/inreach.ts b/apps/fetcher/src/app/trackers/inreach.ts index 89117c40..83a24f52 100644 --- a/apps/fetcher/src/app/trackers/inreach.ts +++ b/apps/fetcher/src/app/trackers/inreach.ts @@ -156,12 +156,12 @@ export class InreachFetcher extends TrackerFetcher { return Math.floor(30 + Math.random() * 3) * 60; } if (lastFixAgeSec > 3 * 3600) { - return Math.floor(15 + Math.random() * 3) * 60; + return Math.floor(20 + Math.random() * 3) * 60; } if (lastFixAgeSec > 30 * 60) { return Math.floor(8 + Math.random() * 3) * 60; } - return 2 * 60; + return 4 * 60; } }