mirror of https://github.com/gorhill/uBlock.git
Use non-normalized URL for reload/report operations
Related issue: https://github.com/uBlockOrigin/uBlock-issues/issues/2774
This commit is contained in:
parent
7bcc340ab0
commit
79ed0c76cb
|
@ -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,
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue