mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 09:07:54 +01:00
fix uncaught data:
URI by popup blocker when URL is updated using location.replace()
This commit is contained in:
parent
ec931e5348
commit
9b57b827d3
1 changed files with 1 additions and 1 deletions
|
@ -331,7 +331,7 @@ vAPI.tabs.registerListeners = function() {
|
|||
if ( changeInfo.url ) {
|
||||
changeInfo.url = sanitizeURL(changeInfo.url);
|
||||
}
|
||||
onUpdatedClient(tabId, changeInfo, tab);
|
||||
onUpdatedClient(tabId.toString(), changeInfo, tab);
|
||||
};
|
||||
|
||||
chrome.webNavigation.onBeforeNavigate.addListener(onBeforeNavigate);
|
||||
|
|
Loading…
Reference in a new issue