Update status screen

This commit is contained in:
Anton Tananaev 2025-05-09 07:56:34 -07:00
parent 5394f0f2e7
commit 61ce0a0653
4 changed files with 21 additions and 22 deletions

View file

@ -43,8 +43,10 @@ class Preferences {
"device_id": preferences.getString(id),
},
distanceFilter: preferences.getInt(distance)?.toDouble(),
locationUpdateInterval: preferences.getInt(interval),
locationUpdateInterval: (preferences.getInt(interval) ?? 0) * 1000,
maxRecordsToPersist: preferences.getBool(buffer) != false ? -1 : 0,
logLevel: bg.Config.LOG_LEVEL_INFO,
logMaxDays: 1,
);
}