Skip to content

Commit 18a242e

Browse files
authored
fix: clear parent exceptions when creating child event (#812)
* fix: clear parent exceptions when creating child event * docs: update changelog
1 parent 33675f4 commit 18a242e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
- Fixed drag and drop copying events instead of moving them ([#706])
1515
- Fixed crash when editing events with attendees ([#34])
1616
- Fixed event edits being silently discarded on back press ([#49])
17-
- Fixed syncing exceptions to repeating events ([#641])
17+
- Fixed synchronization issues when editing events in a recurring series ([#641])
1818

1919
## [1.6.1] - 2025-09-01
2020
### Changed

app/src/main/kotlin/org/fossify/calendar/helpers/EventsHelper.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,11 +189,12 @@ class EventsHelper(val context: Context) {
189189
context.scheduleNextEventReminder(originalEvent, false)
190190

191191
event.apply {
192-
parentId = id!!.toLong()
192+
parentId = id!!
193193
id = null
194194
repeatRule = 0
195195
repeatInterval = 0
196196
repeatLimit = 0
197+
repetitionExceptions = emptyList()
197198
}
198199
if (event.isTask()) {
199200
insertTask(event, showToasts = showToasts, callback = callback)

0 commit comments

Comments
 (0)