1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-05-19 03:33:17 +12:00
This commit is contained in:
Raymond Hill 2018-09-15 10:33:44 -04:00
parent cc0bed69bf
commit 12a471c3c5
No known key found for this signature in database
GPG key ID: 25E1490B761470C2

View file

@ -206,8 +206,8 @@ var matrixSnapshot = function(pageStore, details) {
};
if (
typeof details.scope === 'string' &&
r.hostname.endsWith(details.scope)
(typeof details.scope === 'string') &&
(details.scope === '*' || r.hostname.endsWith(details.scope))
) {
r.scope = details.scope;
} else if ( µmuser.popupScopeLevel === 'site' ) {