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 4ed1d1c commit d525463Copy full SHA for d525463
src/models/hasTimes.js
@@ -111,7 +111,8 @@ class hasTimes extends Base {
111
// skip if description parsing is disabled
112
this.config.get('_skipDescriptionParsing') ||
113
// or the total time matches
114
- (this.data.time_stats && totalTimeSpent === this.data.time_stats.total_time_spent) ||
+ !this.data.time_stats ||
115
+ totalTimeSpent === this.data.time_stats.total_time_spent ||
116
// or the user is filtered out
117
(this.config.get('user') && this.config.get('user') !== this.data.author.username) ||
118
// or the issue is not within the given time frame
0 commit comments