Skip to content

Commit 82fb0f8

Browse files
committed
feat(sync): default auto-sync interval to 120s
Raise the default autoSyncDebounceSeconds from 60 to 120. Update the ConfigCoreService getter fallback to match the vxcore ctor default and bump the vxcore submodule pointer to the corresponding change.
1 parent d38bc5e commit 82fb0f8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

libs/vxcore

src/core/services/configcoreservice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ bool ConfigCoreService::setRecoverLastSessionEnabled(bool p_enabled) {
196196

197197
int ConfigCoreService::getAutoSyncDebounceSeconds() const {
198198
QJsonObject config = getConfig();
199-
int value = config.value(QStringLiteral("autoSyncDebounceSeconds")).toInt(60);
199+
int value = config.value(QStringLiteral("autoSyncDebounceSeconds")).toInt(120);
200200
// Clamp to valid range
201201
if (value < c_minAutoSyncDebounceSeconds) {
202202
value = c_minAutoSyncDebounceSeconds;

0 commit comments

Comments
 (0)