mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 09:07:54 +01:00
this fixes #678
This commit is contained in:
parent
c21a91d318
commit
9c88478984
1 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
);
|
||||
|
||||
/******************************************************************************/
|
||||
|
||||
|
|
Loading…
Reference in a new issue