Open RenHong-HC opened 5 years ago
I found that the source code has been fixed in February, and the 3.0.6 version was released in January, so it still exists.
Apologies I forgot to make a new release with the changes. Have opened a PR now and will create release shortly: https://github.com/ical4j/ical4j/pull/336
Apologies I forgot to make a new release with the changes. Have opened a PR now and will create release shortly: #336 Thank you very much, I have seen the new version you posted
This issue looks fixed to me. @RenHong-HC are you happy to close this ticket?
Describe the bug I generated a weekly reminder rule, now I want to get the next reminder time through the rule, but I can’t get it.
To Reproduce Steps to reproduce the behavior:
I did a time zone conversion,My start timestamp is: 1561078800000, my local time zone is: UTC+8, the target time zone ID is: America/Noronha, now I convert the timestamp above to the target time zone, the time is: 20190620T230000, then I Through this time as a seed, to get the next execution time, the return time is empty,code show as below
I tracked the code and found that the target time zone was lost.The problem source is as follows,There was a problem here in
retVal.add(Dates.getInstance(cal.getTime(), type))
,cal.getTime() returns a local timestamp, and there is no time zone set in Dates.getInstance, so the time I get here is my own time zone, not the time of my target time zone.` private class WeeklyExpansionFilter implements Function<Date, List> {