1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 07:22:28 +02:00
This commit is contained in:
gorhill 2015-09-04 09:36:53 -04:00
parent c21a91d318
commit 9c88478984

View File

@ -44,7 +44,13 @@ if ( !matches || matches.length !== 2 ) {
return;
}
messager.send({ what : 'getAssetContent', url: matches[1] }, onAssetContentReceived);
messager.send(
{
what : 'getAssetContent',
url: decodeURIComponent(matches[1])
},
onAssetContentReceived
);
/******************************************************************************/