From a58238158fde055392335b7ccc8a50a6590fb264 Mon Sep 17 00:00:00 2001 From: Jon Atkins Date: Sat, 9 Aug 2014 02:34:36 +0100 Subject: [PATCH] the stock intel update of 2014-08-08 adds two new fields to every request - called 'b' and 'c', both blank strings no idea why, or what they're for - and it does seem to work without them - but duplicate in case it's important --- code/utils_misc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/utils_misc.js b/code/utils_misc.js index d5edd2c1..ab6f6ddb 100644 --- a/code/utils_misc.js +++ b/code/utils_misc.js @@ -141,7 +141,7 @@ window.digits = function(d) { window.postAjax = function(action, data, success, error) { var versionStr = nemesis.dashboard.config.CURRENT_VERSION; - var post_data = JSON.stringify($.extend({}, data, {v: versionStr})); + var post_data = JSON.stringify($.extend({}, data, {v: versionStr, b: "", c: ""})); var remove = function(data, textStatus, jqXHR) { window.requests.remove(jqXHR); }; var errCnt = function(jqXHR) { window.failedRequestCount++; window.requests.remove(jqXHR); };