From 01af708e6eab92c92e3e16703704cb2ae93a8724 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Mon, 3 Apr 2017 12:41:19 +0800 Subject: [PATCH] GitLogParser.js --- GitLogParser.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/GitLogParser.js b/GitLogParser.js index 6c29d402..42649913 100644 --- a/GitLogParser.js +++ b/GitLogParser.js @@ -235,7 +235,8 @@ if (typeof(Seed.argv[2]) == 'undefined') { } var res = GitLogParser.parse( Seed.argv[2][0] == '/' ? Seed.argv[2] : xDate.Date.parseDate(Seed.argv[2], 'Y-m-d')); -var totals = { work : 0 , idle: 0, shortidle : 0} +var totals = { work : 0 , idle: 0, shortidle : 0}; +var unknown = []; for (var h in res) { for (var p in res[h]) { if (p == 'LONGIDLE') { @@ -258,7 +259,7 @@ for (var h in res) { //print(h + ' ' + Math.floor(res[h][p].total/60000) +'m ' + p ); totals.work += Math.floor(res[h][p].total/60000) ; - var unknown = []; + if (h == -1) { print( "\n" + p + ':' + Math.floor(res[h][p].total/60000) + 'm'); -- 2.39.2