1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-26 18:10:39 +12:00

Firefox: bypass cache when reloading a tab

This commit is contained in:
Deathamns 2015-03-12 15:46:33 +01:00 committed by gorhill
parent f3d62969ee
commit 539826310b

View file

@ -738,7 +738,9 @@ vAPI.tabs.reload = function(tabId) {
return;
}
getBrowserForTab(tab).webNavigation.reload(0);
getBrowserForTab(tab).webNavigation.reload(
Ci.nsIWebNavigation.LOAD_FLAGS_BYPASS_CACHE
);
};
/******************************************************************************/