From 209637ee8a875032d4a8754b38010b1afdbaddbb Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Mon, 16 Feb 2026 19:10:24 +0200 Subject: [PATCH] debug --- src/stores/sync_config.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/stores/sync_config.js b/src/stores/sync_config.js index 91394139f..34225d64f 100644 --- a/src/stores/sync_config.js +++ b/src/stores/sync_config.js @@ -605,9 +605,15 @@ export const useSyncConfigStore = defineStore('sync_config', { ) cache = null } - console.log(cache, live) + console.log('======') + console.log('CACHE', cache.prefsStorage.simple.conversationDisplay) + console.log('LIVE', live.prefsStorage.simple.conversationDisplay) let { recent, stale, needUpload } = _getRecentData(cache, live) + console.log('======') + console.log('RECENT', cache.prefsStorage.simple.conversationDisplay) + console.log('STALE', live.prefsStorage.simple.conversationDisplay) + console.log('======') const userNew = userData.created_at > NEW_USER_DATE const flagsTemplate = userNew ? newUserFlags : defaultState.flagStorage