From f467d94603abfad9fe41f088baf2f67f65ca4bdf Mon Sep 17 00:00:00 2001 From: Kerry Date: Mon, 8 Aug 2022 18:40:46 +0200 Subject: [PATCH] Live location sharing: share location at most every 5 seconds (PSG-655) (#9148) --- src/stores/OwnBeaconStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/OwnBeaconStore.ts b/src/stores/OwnBeaconStore.ts index f3184153f2..18d25ffad3 100644 --- a/src/stores/OwnBeaconStore.ts +++ b/src/stores/OwnBeaconStore.ts @@ -55,7 +55,7 @@ export enum OwnBeaconStoreEvent { BeaconUpdateError = 'BeaconUpdateError', } -const MOVING_UPDATE_INTERVAL = 2000; +const MOVING_UPDATE_INTERVAL = 5000; const STATIC_UPDATE_INTERVAL = 30000; const BAIL_AFTER_CONSECUTIVE_ERROR_COUNT = 2;