mirror of https://github.com/gorhill/uBlock.git
this fixes #678
This commit is contained in:
parent
c21a91d318
commit
9c88478984
|
@ -44,7 +44,13 @@ if ( !matches || matches.length !== 2 ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
messager.send({ what : 'getAssetContent', url: matches[1] }, onAssetContentReceived);
|
messager.send(
|
||||||
|
{
|
||||||
|
what : 'getAssetContent',
|
||||||
|
url: decodeURIComponent(matches[1])
|
||||||
|
},
|
||||||
|
onAssetContentReceived
|
||||||
|
);
|
||||||
|
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue