Skip to content

Commit

Permalink
Use non-normalized URL for reload/report operations
Browse files Browse the repository at this point in the history
  • Loading branch information
gorhill committed Aug 10, 2023
1 parent 7bcc340 commit 79ed0c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/popup-fenix.js
Expand Up @@ -944,7 +944,7 @@ const gotoReport = function() {
messaging.send('popupPanel', {
what: 'launchReporter',
tabId: popupData.tabId,
pageURL: popupData.pageURL,
pageURL: popupData.rawURL,
popupPanel,
});

Expand Down Expand Up @@ -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,
});
Expand Down

0 comments on commit 79ed0c7

Please sign in to comment.