1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-08 12:57:57 +02:00

Firefox: bypass cache when reloading a tab

This commit is contained in:
Deathamns 2015-03-12 15:46:33 +01:00
parent aaafdebefd
commit 48503f7009

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
);
};
/******************************************************************************/