Skip to content

Commit

Permalink
fix probable typo bug #135
Browse files Browse the repository at this point in the history
  • Loading branch information
arolson101 committed Feb 13, 2018
1 parent 5749fb8 commit b2dc0ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/rrule.js
Original file line number Diff line number Diff line change
Expand Up @@ -996,7 +996,7 @@
gettimeset = gettimeset[freq]
if ((freq >= RRule.HOURLY && plb(byhour) && !contains(byhour, hour)) ||
(freq >= RRule.MINUTELY && plb(byminute) && !contains(byminute, minute)) ||
(freq >= RRule.SECONDLY && plb(bysecond) && !contains(bysecond, minute))) {
(freq >= RRule.SECONDLY && plb(bysecond) && !contains(bysecond, second))) {
timeset = []
} else {
timeset = gettimeset.call(ii, hour, minute, second, dtstartMillisecondModulo)
Expand Down

0 comments on commit b2dc0ce

Please sign in to comment.