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
Thank you for taking an interest in rrule! Please include the following in your report:
rrule
$ date
Expected input: RRule.fromText("every week for 30 times") Actual input: RRule.fromText("every%20week%20for%2030%20times")
RRule.fromText("every week for 30 times")
RRule.fromText("every%20week%20for%2030%20times")
RRule version: current (I guess) Operating System: OSX Timezone: CET
The value in the input causing RRule.fromText() to fail is url encoded. When inserting it in the input, it must be decoded.
RRule.fromText()
The text was updated successfully, but these errors were encountered:
Decode rrule text from url
5318bd2
Fix jkbrzt#384
Successfully merging a pull request may close this issue.
Reporting an issue
Thank you for taking an interest in
rrule
! Please include the following inyour report:
creating a new one
are using such as the exact RRule string and dates.
rrule
you are using$ date
from the command lineof the machine showing the bug)
Expected input:
RRule.fromText("every week for 30 times")
Actual input:
RRule.fromText("every%20week%20for%2030%20times")
RRule version: current (I guess)
Operating System: OSX
Timezone: CET
Solution
The value in the input causing
RRule.fromText()
to fail is url encoded. When inserting it in the input, it must be decoded.The text was updated successfully, but these errors were encountered: