1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-02 10:24:59 +12:00

write to pageStore.pageUrl, not pageStore.normalURL

This commit is contained in:
Ryan Hendrickson 2018-05-30 19:15:11 -04:00
parent 03ed236489
commit 6bf7609bfb

View file

@ -459,7 +459,7 @@ vAPI.tabs.registerListeners();
pageStore.pageHostname === tabContext.rootHostname
) {
pageStore.rawURL = tabContext.rawURL;
pageStore.normalURL = normalURL;
pageStore.pageUrl = normalURL;
this.updateTitle(tabId);
this.pageStoresToken = Date.now();
return pageStore;