Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
erosman authored Dec 9, 2023
1 parent 1d49b8d commit feefece
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/sync.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit feefece

Please sign in to comment.