Skip to content

Commit 18f9acd

Browse files
committed
[mv3] Fix target URL when reporting from a strict-blocked page
Related feedback: uBlockOrigin/uAssets#29594 (comment)
1 parent 28ea00f commit 18f9acd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

platform/mv3/extension/js/popup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ dom.on('#gotoReport', 'click', ev => {
233233
}
234234
if ( url === undefined ) { return; }
235235
const reportURL = new URL(runtime.getURL('/report.html'));
236-
reportURL.searchParams.set('url', url.href);
236+
reportURL.searchParams.set('url', tabURL.href);
237237
reportURL.searchParams.set('mode', popupPanelData.level);
238238
sendMessage({
239239
what: 'gotoURL',

0 commit comments

Comments
 (0)