Skip to content

Commit 30930c9

Browse files
authored
Merge pull request #2641 from mneunomne/#2596
bypass cache on reload when switch to strict mode
2 parents 95de0f1 + ca11d94 commit 30930c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/js/adn/notifications.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ const reactivateList = function() {
222222

223223
const reloadCurrentTab = function() {
224224
browser.tabs.query({ active: true, currentWindow: true }, (tabs) => {
225-
browser.tabs.reload(tabs[0].id);
225+
browser.tabs.reload(tabs[0].id, { bypassCache: true });
226226
});
227227
}
228228

0 commit comments

Comments
 (0)