1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-01 12:44:42 +00:00

Fixed iCal timezone

https://github.com/mangstadt/biweekly/issues/126
This commit is contained in:
M66B 2023-10-27 23:41:42 +02:00
parent 0193116fa4
commit 87462e3950

View file

@ -422,14 +422,19 @@ public class ICalTimeZone extends TimeZone {
* to the "last" date. But this causes all the unit tests to fail,
* so I guess not.
*/
it.advanceTo(last);
//it.advanceTo(last);
//it.next();
DateValue prev = null, cur = null;
boolean stopped = false;
while (it.hasNext()) {
cur = it.next();
dateCache.add(cur);
int curComparison = cur.compareTo(last);
if (curComparison < 0) continue;
if (curComparison > 0) {
dateCache.add(cur);
}
if (givenDate.compareTo(cur) < 0) {
//stop if we have passed the givenTime
@ -439,8 +444,7 @@ public class ICalTimeZone extends TimeZone {
prev = cur;
}
return after ? (stopped ? cur : null) : prev;
}
return after ? (stopped ? cur : null) : prev; }
/*
* The date is somewhere in the cached list, so find it.