We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b064dc commit d3de54fCopy full SHA for d3de54f
src/browser/extension/options/syncOptions.js
@@ -60,7 +60,8 @@ export const getOptionsFromBg = () => {
60
};
61
62
export const isAllowed = (localOptions = options) => (
63
- !localOptions || localOptions.inject || location.href.match(localOptions.urls.split('\n').join('|'))
+ !localOptions || localOptions.inject || !localOptions.urls
64
+ || location.href.match(localOptions.urls.split('\n').join('|'))
65
);
66
67
export default {
0 commit comments