Skip to content

Commit

Permalink
Merge remote-tracking branch 'temp2/patch-2'
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinRoebert committed May 29, 2024
2 parents 897c7dc + dce06a7 commit 99b96bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core_js/historyListener.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function historyCleaner(details) {
if(urlBefore !== urlAfter) {
browser.tabs.executeScript(details.tabId, {
frameId: details.frameId,
code: 'history.replaceState({state: null},"",'+JSON.stringify(urlAfter)+');'
code: 'history.replaceState(null,"",'+JSON.stringify(urlAfter)+');'
}).then(() => {}, onError);
}
}
Expand Down

0 comments on commit 99b96bc

Please sign in to comment.