We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Extract from _iter function:
var timeset if (freq < RRule.HOURLY) { timeset = this.timeset } else { var gettimeset = {} gettimeset[RRule.HOURLY] = ii.htimeset gettimeset[RRule.MINUTELY] = ii.mtimeset gettimeset[RRule.SECONDLY] = ii.stimeset 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))) { timeset = [] } else { timeset = gettimeset.call(ii, hour, minute, second, dtstartMillisecondModulo) } }
There seems to be an error at this line:
(freq >= RRule.SECONDLY && plb(bysecond) && !contains(bysecond, minute))) {
Should the minute not be second?
The text was updated successfully, but these errors were encountered:
The tests pass with it either way, but it sure looks like a copy/paste bug to me I've made the fix on ``rrule-alt``` (see #160 (comment))
Sorry, something went wrong.
Can you make it into a pull request @arolson101 ?
fix probable typo bug #135
b2dc0ce
No branches or pull requests
Extract from _iter function:
There seems to be an error at this line:
Should the minute not be second?
The text was updated successfully, but these errors were encountered: