mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
[mv3] Fix target URL when reporting from a strict-blocked page
Related feedback: https://github.com/uBlockOrigin/uAssets/issues/29594#issuecomment-3176159770
This commit is contained in:
parent
28ea00fd11
commit
18f9acd844
1 changed files with 1 additions and 1 deletions
|
|
@ -233,7 +233,7 @@ dom.on('#gotoReport', 'click', ev => {
|
|||
}
|
||||
if ( url === undefined ) { return; }
|
||||
const reportURL = new URL(runtime.getURL('/report.html'));
|
||||
reportURL.searchParams.set('url', url.href);
|
||||
reportURL.searchParams.set('url', tabURL.href);
|
||||
reportURL.searchParams.set('mode', popupPanelData.level);
|
||||
sendMessage({
|
||||
what: 'gotoURL',
|
||||
|
|
|
|||
Loading…
Reference in a new issue