Check title before adding event to db
This commit is contained in:
parent
cdab56e660
commit
13019e6835
|
@ -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
|
// 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)
|
val storedEventId = context.eventsDB.getEventIdWithImportId(importId)
|
||||||
if (storedEventId != null) {
|
if (storedEventId != null) {
|
||||||
event.id = storedEventId
|
event.id = storedEventId
|
||||||
|
|
Loading…
Reference in New Issue