From 40610849191791646ef76c56bc50b19f9a22ecb3 Mon Sep 17 00:00:00 2001 From: toady Date: Fri, 20 Jan 2017 06:13:41 +1000 Subject: [PATCH] Prevent caching of request information --- chrome/content/overlay.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/overlay.js b/chrome/content/overlay.js index ec03b89..6ed63a2 100644 --- a/chrome/content/overlay.js +++ b/chrome/content/overlay.js @@ -462,7 +462,7 @@ initPane: function(){ }; // Add pramas true for async request.timeout = 5000; - request.open("GET", aUrl, true); + request.open("GET", aUrl + ((/\?/).test(aUrl) ? "&" : "?=") + (new Date()).getTime(), true); request.send(null); },