diff --git a/app/src/main/kotlin/com/simplemobiletools/calendar/pro/helpers/CalDAVHelper.kt b/app/src/main/kotlin/com/simplemobiletools/calendar/pro/helpers/CalDAVHelper.kt index c05b322d7..494ce7781 100644 --- a/app/src/main/kotlin/com/simplemobiletools/calendar/pro/helpers/CalDAVHelper.kt +++ b/app/src/main/kotlin/com/simplemobiletools/calendar/pro/helpers/CalDAVHelper.kt @@ -265,7 +265,7 @@ class CalDAVHelper(val context: Context) { } // store the event in the local db only if it is an occurrence that has been modified and not deleted - if (status != Events.STATUS_CANCELED) { + if (status != Events.STATUS_CANCELED && title.isNotEmpty()) { val storedEventId = context.eventsDB.getEventIdWithImportId(importId) if (storedEventId != null) { event.id = storedEventId