Skip to content

Commit d906fbd

Browse files
committed
Pass the raw option to the cli-gh-cal module
1 parent bc6f089 commit d906fbd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -659,8 +659,9 @@ GitStats.prototype.globalActivity = function (options, callback) {
659659
, start: options.start
660660
, end: options.end
661661
, cal: cal
662+
, raw: options.raw
662663
};
663-
callback(null, options.raw ? data : CliGhCal(cal, data));
664+
callback(null, CliGhCal(cal, data));
664665
});
665666

666667
return this;

0 commit comments

Comments
 (0)