Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit adb310c

Browse files
authored
Merge pull request #62 from viper-development/sils/null
Remove null (breaks stuff)
2 parents 35b8f91 + aea0ab4 commit adb310c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/models/hasTimes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ class hasTimes extends Base {
127127
let difference = this.data.time_stats.total_time_spent - totalTimeSpent,
128128
note = Object.assign({noteable_type: this._typeSingular}, this.data);
129129

130-
times.unshift(new Time(Time.toHumanReadable(difference, null, this.config.get('hoursPerDay')), note, this, this.config));
130+
times.unshift(new Time(Time.toHumanReadable(difference, this.config.get('hoursPerDay')), note, this, this.config));
131131

132132
resolve();
133133
}));

0 commit comments

Comments
 (0)