Skip to content

Commit 068de43

Browse files
committed
Set telemetry default interval to 60 seconds
1 parent 21d754d commit 068de43

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

apps/mobile/src/components/sos/SosEmergencyCard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ watch(() => ({ ...sosStore.settings }), syncFromStore);
5353
</script>
5454

5555
<template>
56-
<details class="panel fold-panel" open>
56+
<details class="panel fold-panel">
5757
<summary class="panel-summary">
5858
<div class="summary-copy">
5959
<span class="summary-icon" aria-hidden="true">

apps/mobile/src/stores/nodeStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ const DEFAULT_SETTINGS: NodeUiSettings = {
133133
announceIntervalSeconds: DEFAULT_NODE_CONFIG.announceIntervalSeconds,
134134
telemetry: {
135135
enabled: false,
136-
publishIntervalSeconds: 10,
136+
publishIntervalSeconds: 60,
137137
accuracyThresholdMeters: undefined,
138138
staleAfterMinutes: 30,
139139
expireAfterMinutes: 180,

apps/mobile/src/views/SettingsView.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ function applySettings(): void {
250250
broadcast: form.broadcast,
251251
telemetry: {
252252
enabled: form.telemetryEnabled,
253-
publishIntervalSeconds: Math.min(60, Math.max(5, Number(form.telemetryPublishIntervalSeconds || 10))),
253+
publishIntervalSeconds: Math.min(60, Math.max(5, Number(form.telemetryPublishIntervalSeconds || 60))),
254254
accuracyThresholdMeters:
255255
form.telemetryAccuracyThresholdMeters === undefined || form.telemetryAccuracyThresholdMeters === null || form.telemetryAccuracyThresholdMeters === 0
256256
? undefined

0 commit comments

Comments
 (0)