We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cf60b8 commit 4ed1d1cCopy full SHA for 4ed1d1c
src/models/hasTimes.js
@@ -111,7 +111,7 @@ class hasTimes extends Base {
111
// skip if description parsing is disabled
112
this.config.get('_skipDescriptionParsing') ||
113
// or the total time matches
114
- totalTimeSpent === this.data.time_stats.total_time_spent ||
+ (this.data.time_stats && totalTimeSpent === this.data.time_stats.total_time_spent) ||
115
// or the user is filtered out
116
(this.config.get('user') && this.config.get('user') !== this.data.author.username) ||
117
// or the issue is not within the given time frame
0 commit comments