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
This commit is contained in:
Jon Atkins 2014-08-09 02:34:36 +01:00
parent 8b95e18ef9
commit a58238158f

View File

@ -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); };