From d906fbdab5e308da78ac9622a31f05d5c66951a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ionic=C4=83=20Biz=C4=83u?= Date: Mon, 23 Jan 2017 20:42:08 +0200 Subject: [PATCH] Pass the raw option to the cli-gh-cal module --- lib/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/index.js b/lib/index.js index 780bb32..571ccda 100644 --- a/lib/index.js +++ b/lib/index.js @@ -659,8 +659,9 @@ GitStats.prototype.globalActivity = function (options, callback) { , start: options.start , end: options.end , cal: cal + , raw: options.raw }; - callback(null, options.raw ? data : CliGhCal(cal, data)); + callback(null, CliGhCal(cal, data)); }); return this;