mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
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
1 changed files with 2 additions and 2 deletions
|
|
@ -944,7 +944,7 @@ const gotoReport = function() {
|
||||||
messaging.send('popupPanel', {
|
messaging.send('popupPanel', {
|
||||||
what: 'launchReporter',
|
what: 'launchReporter',
|
||||||
tabId: popupData.tabId,
|
tabId: popupData.tabId,
|
||||||
pageURL: popupData.pageURL,
|
pageURL: popupData.rawURL,
|
||||||
popupPanel,
|
popupPanel,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
@ -1167,7 +1167,7 @@ const reloadTab = function(bypassCache = false) {
|
||||||
messaging.send('popupPanel', {
|
messaging.send('popupPanel', {
|
||||||
what: 'reloadTab',
|
what: 'reloadTab',
|
||||||
tabId: popupData.tabId,
|
tabId: popupData.tabId,
|
||||||
url: popupData.pageURL,
|
url: popupData.rawURL,
|
||||||
select: vAPI.webextFlavor.soup.has('mobile'),
|
select: vAPI.webextFlavor.soup.has('mobile'),
|
||||||
bypassCache,
|
bypassCache,
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue