prevent plugin caching

This commit is contained in:
antelle 2017-02-19 20:38:53 +01:00
parent 04cd5c7456
commit 5082fbf5fc
1 changed files with 1 additions and 1 deletions

View File

@ -352,7 +352,7 @@ Plugin.loadFromUrl = function(url) {
};
function httpGet(url, binary) {
commonLogger.debug('GET', url);
commonLogger.debug('GET', url + '?ts=' + Date.now());
const ts = commonLogger.ts();
return new Promise((resolve, reject) => {
const xhr = new XMLHttpRequest();