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
Hi.
Why ice_cube uses this:
def build_ical(builder) builder['UNTIL'] << IcalBuilder.ical_utc_format(time) end
but not this:
def build_ical(builder) builder['UNTIL'] << IcalBuilder.ical_format(time, force_utc) end
I use Japan time zone and when I use UNTIL it creates wrong UNTIL entry. See below.
start_time = Time.current end_time = Time.current+2.hours rule = IceCube::Rule.daily(1) rule = rule.until(end_time) IceCube::Schedule.new(start_time, end_time: end_time) { |s| s.add_recurrence_rule(rule) }.to_ical
Produces "DTSTART;TZID=JST:20221008T225632\nRRULE:FREQ=DAILY;UNTIL=20221008T155635Z\nDTEND;TZID=JST:20221009T005635"
Any ideas?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi.
Why ice_cube uses this:
but not this:
I use Japan time zone and when I use UNTIL it creates wrong UNTIL entry. See below.
Produces
"DTSTART;TZID=JST:20221008T225632\nRRULE:FREQ=DAILY;UNTIL=20221008T155635Z\nDTEND;TZID=JST:20221009T005635"
Any ideas?
The text was updated successfully, but these errors were encountered: