From 2fcaf67eea1375e33101f715a98d3b7c7f265e81 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Mon, 3 Apr 2017 12:34:44 +0800 Subject: [PATCH] GitLogParser.js --- GitLogParser.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/GitLogParser.js b/GitLogParser.js index ddec340d..807f98f6 100644 --- a/GitLogParser.js +++ b/GitLogParser.js @@ -146,7 +146,8 @@ GitLogParser = { for(var proj in this.regexes) { for(var r in this.regexes[proj]) { - if (ret.line.match(r)) { + if (ret.line.match(this.regexes[proj][r])) { + //print("Match " + proj + " on " + r + ret.line + ) ret.project = proj; break; } -- 2.39.2