Merge pull request #2324 from cmgustavo/bug/wp-cache

Prevent cache for IE11 and WP8.1
This commit is contained in:
Matias Alejo Garcia 2015-01-19 19:51:22 -03:00
commit b3d10ac78d
1 changed files with 2 additions and 1 deletions

View File

@ -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