1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-04 16:47:15 +02:00

Use non-normalized URL for reload/report operations

Related issue:
https://github.com/uBlockOrigin/uBlock-issues/issues/2774
This commit is contained in:
Raymond Hill 2023-08-10 12:10:19 -04:00
parent 7bcc340ab0
commit 79ed0c76cb
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -944,7 +944,7 @@ const gotoReport = function() {
messaging.send('popupPanel', {
what: 'launchReporter',
tabId: popupData.tabId,
pageURL: popupData.pageURL,
pageURL: popupData.rawURL,
popupPanel,
});
@ -1167,7 +1167,7 @@ const reloadTab = function(bypassCache = false) {
messaging.send('popupPanel', {
what: 'reloadTab',
tabId: popupData.tabId,
url: popupData.pageURL,
url: popupData.rawURL,
select: vAPI.webextFlavor.soup.has('mobile'),
bypassCache,
});