Skip to content

Commit

Permalink
Prevent caching of request information
Browse files Browse the repository at this point in the history
  • Loading branch information
InternalError503 committed Jan 19, 2017
1 parent 45cc406 commit 4061084
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chrome/content/overlay.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
},

Expand Down

0 comments on commit 4061084

Please sign in to comment.