From: Steinar H. Gunderson Date: Wed, 3 Dec 2014 22:49:12 +0000 (+0100) Subject: A little serve-analysis bugfix I forgot to commit. X-Git-Url: https://git.sesse.net/?p=remoteglot;a=commitdiff_plain;h=00caa4a350a597e9023675343374ace0836bdd92 A little serve-analysis bugfix I forgot to commit. --- diff --git a/www/serve-analysis.js b/www/serve-analysis.js index 948ea96..0faf92f 100644 --- a/www/serve-analysis.js +++ b/www/serve-analysis.js @@ -93,8 +93,8 @@ var create_json_historic_diff = function(new_json, history_left, new_diff_json, zlib.gzip(diff_text, function(err, buffer) { if (err) throw err; new_diff_json[histobj.last_modified] = { - plain: diff, - text: diff_text, + parsed: diff, + plain: diff_text, gzip: buffer, last_modified: new_json.last_modified, }; @@ -192,9 +192,9 @@ var send_json = function(response, ims, accept_gzip, num_viewers) { response.writeHead(200, headers); response.write(this_json.gzip); } else { - headers['Content-Length'] = this_json.text.length; + headers['Content-Length'] = this_json.plain.length; response.writeHead(200, headers); - response.write(this_json.text); + response.write(this_json.plain); } response.end(); }