From ac064a6e209374f781fa7cd841bafa0c851a881b Mon Sep 17 00:00:00 2001 From: Gustavo Maximiliano Cortez Date: Mon, 19 Jan 2015 19:35:07 -0200 Subject: [PATCH] Prevent cache for IE11 and WP8.1 --- js/plugins/InsightStorage.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/plugins/InsightStorage.js b/js/plugins/InsightStorage.js index b05dd338b..ab4b791ce 100644 --- a/js/plugins/InsightStorage.js +++ b/js/plugins/InsightStorage.js @@ -128,7 +128,8 @@ InsightStorage.prototype._makeGetRequest = function(passphrase, key, callback) { var retrieveUrl = this.storeUrl + '/retrieve'; var getParams = { url: retrieveUrl + '?' + querystring.encode({ - key: key + key: key, + rand: Math.random() // prevent cache }), headers: { 'Authorization': authHeader