mirror of
https://github.com/SimpleMobileTools/Simple-Calendar.git
synced 2025-06-05 21:59:17 +02:00
Merge pull request #1133 from pcsaunak/master
Parsing of .ics file for key BYMONTHDAY
This commit is contained in:
@@ -60,8 +60,10 @@ class Parser {
|
|||||||
} else if (repeatInterval.isXMonthlyRepetition() || repeatInterval.isXYearlyRepetition()) {
|
} else if (repeatInterval.isXMonthlyRepetition() || repeatInterval.isXYearlyRepetition()) {
|
||||||
repeatRule = if (value.startsWith("-1")) REPEAT_ORDER_WEEKDAY_USE_LAST else REPEAT_ORDER_WEEKDAY
|
repeatRule = if (value.startsWith("-1")) REPEAT_ORDER_WEEKDAY_USE_LAST else REPEAT_ORDER_WEEKDAY
|
||||||
}
|
}
|
||||||
} else if (key == BYMONTHDAY && value.toInt() == -1) {
|
} else if (key == BYMONTHDAY) {
|
||||||
repeatRule = REPEAT_LAST_DAY
|
if (value.split(",").any { it.toInt() == -1 }) {
|
||||||
|
repeatRule = REPEAT_LAST_DAY
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return EventRepetition(repeatInterval, repeatRule, repeatLimit)
|
return EventRepetition(repeatInterval, repeatRule, repeatLimit)
|
||||||
|
Reference in New Issue
Block a user