File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
app/src/main/kotlin/org/fossify/calendar/helpers Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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)
You can’t perform that action at this time.
0 commit comments