From 52716610c49ebaf2ac4cafac9453521b92321110 Mon Sep 17 00:00:00 2001 From: Robert Date: Sat, 17 Dec 2022 23:44:41 -0500 Subject: [PATCH] Cache Bust AJAX calls IG for HA-Proxy --- core/addons/ajax.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/addons/ajax.js b/core/addons/ajax.js index d3f0459..2beee17 100644 --- a/core/addons/ajax.js +++ b/core/addons/ajax.js @@ -159,7 +159,7 @@ } } }; - xmlHttp.open(options.method || 'GET', url, true); + xmlHttp.open(options.method || 'GET', url + ts, true); if (options.headers) { for (var key in options.headers) { xmlHttp.setRequestHeader(key, options.headers[key]);