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 f5b82de commit 1d49b8d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/content/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,15 @@ <h1 id="changelog">Changelog</h1>
<dd>Added locally stored PAC feature (#46) (experimental)</dd>
<dd>Added PAC view feature</dd>
<dd>Fixed an issue with empty Global Exclude</dd>
<dd>Fixed an issue with upgrade sync data on Firefox (#53)</dd>
<dd>Updated hostname check to allow "file:" for Unix domain socket (#47)</dd>
<dd>Updated PAC check to allow "file:" (#49)</dd>
<dd>Updated user interface to disable inapplicable options in proxies</dd>


<dt>8.2</dt>
<dd>Added option to set the country to blank</dd>
<dd>Fixed an issue with sync (#45)</dd>
<dd>Fixed an issue with upgrade sync data on Chrome (#45)</dd>
<dd>Updated Incognito process on Chrome</dd>

<dt>8.1</dt>
Expand Down
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.hasOwn(obj, 'foxyProxyEdition');
return Object.hasOwn(obj, 'settings') || Object.values(obj).some(i => i.address);
}

static async getSync(pref) {
Expand Down

0 comments on commit 1d49b8d

Please sign in to comment.