do not fail on debug
This commit is contained in:
parent
dae4e5b2ac
commit
11ce0a8e3e
1 changed files with 4 additions and 4 deletions
|
|
@ -598,8 +598,8 @@ export const useSyncConfigStore = defineStore('sync_config', {
|
|||
}
|
||||
|
||||
console.log('======')
|
||||
console.log('CACHE', cache.prefsStorage.simple.conversationDisplay)
|
||||
console.log('LIVE', live.prefsStorage.simple.conversationDisplay)
|
||||
console.log('CACHE', cache?.prefsStorage?.simple?.conversationDisplay)
|
||||
console.log('LIVE', live?.prefsStorage?.simple?.conversationDisplay)
|
||||
if (cache._timestamp > live._timestamp) {
|
||||
console.log('C > L')
|
||||
} else if (cache._timestamp === live._timestamp) {
|
||||
|
|
@ -609,8 +609,8 @@ export const useSyncConfigStore = defineStore('sync_config', {
|
|||
}
|
||||
let { recent, stale, needUpload } = _getRecentData(cache, live)
|
||||
console.log('======')
|
||||
console.log('RECENT', recent.prefsStorage.simple.conversationDisplay)
|
||||
console.log('STALE', stale.prefsStorage.simple.conversationDisplay)
|
||||
console.log('RECENT', recent.prefsStorage?.simple?.conversationDisplay)
|
||||
console.log('STALE', stale?.prefsStorage?.simple?.conversationDisplay)
|
||||
console.log('======')
|
||||
|
||||
const userNew = userData.created_at > NEW_USER_DATE
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue