From feefecee8103c180b43a76ae3a80b9923c0e4138 Mon Sep 17 00:00:00 2001 From: erosman Date: Sat, 9 Dec 2023 10:53:57 +0330 Subject: [PATCH] Add files via upload --- src/content/sync.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/sync.js b/src/content/sync.js index 4e1f975..67896da 100644 --- a/src/content/sync.js +++ b/src/content/sync.js @@ -63,7 +63,7 @@ export class Sync { static hasOldData(obj) { // FP v3 OR FP v7 - return Object.hasOwn(obj, 'settings') || Object.values(obj).some(i => i.address); + return Object.hasOwn(obj, 'settings') || Object.values(obj).some(i => Object.hasOwn(i, 'address')); } static async getSync(pref) {