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