From d7e3d751f02d0eb3f2c0be1967d6868eb73aa63f Mon Sep 17 00:00:00 2001 From: tibbi Date: Sat, 2 Sep 2017 00:25:16 +0200 Subject: [PATCH] make the error reporting at ics file importing more verbose --- .../com/simplemobiletools/calendar/helpers/IcsImporter.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/calendar/helpers/IcsImporter.kt b/app/src/main/kotlin/com/simplemobiletools/calendar/helpers/IcsImporter.kt index 60a9e9692..10b029bad 100644 --- a/app/src/main/kotlin/com/simplemobiletools/calendar/helpers/IcsImporter.kt +++ b/app/src/main/kotlin/com/simplemobiletools/calendar/helpers/IcsImporter.kt @@ -108,7 +108,7 @@ class IcsImporter { event.endTS -= DAY } - activity.dbHelper.insert(event, true) { + activity.dbHelper.insert(event, false) { for (exceptionTS in curRepeatExceptions) { activity.dbHelper.addEventRepeatException(it, exceptionTS) }