diff --git a/package.json b/package.json index 3a2a64a5..268736dd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "censortracker", - "version": "12.0.0", + "version": "13.0.0", "description": "|", "author": "Roskomsvoboda", "license": "MIT", diff --git a/src/shared/js/background/utilities.js b/src/shared/js/background/utilities.js index c99e4310..66c8eb87 100644 --- a/src/shared/js/background/utilities.js +++ b/src/shared/js/background/utilities.js @@ -99,7 +99,7 @@ export const removeDuplicates = (urls) => { const result = new Set() for (const url of urls) { - const domain = getHostname(url) + const domain = getDomain(url) if (domain) { result.add(domain) diff --git a/src/shared/js/pages/popup.js b/src/shared/js/pages/popup.js index 35807802..3e54668d 100644 --- a/src/shared/js/pages/popup.js +++ b/src/shared/js/pages/popup.js @@ -135,7 +135,7 @@ import { 'proxyServerURI', 'proxyLastFetchTs', ]).then(async ({ currentRegionName, proxyServerURI, proxyLastFetchTs }) => { - if (currentRegionName && proxyServerURI && proxyLastFetchTs) { + if (proxyServerURI && proxyLastFetchTs) { const domains = await Registry.getDomains() const proxyMachineId = proxyServerURI.split('.', 1)[0] const proxyingDetailsText = document.getElementById('proxyingDetailsText') diff --git a/src/shared/manifest/base.json b/src/shared/manifest/base.json index 47318a9d..4107435c 100644 --- a/src/shared/manifest/base.json +++ b/src/shared/manifest/base.json @@ -1,5 +1,5 @@ { - "version": "12.6.0", + "version": "13.0.0", "name": "__MSG_appName__", "description": "__MSG_appDesc__", "author": "__MSG_appAuthor__",