From 61f30cd5d669bc8e0f8522a70d508a165516558c Mon Sep 17 00:00:00 2001 From: fnrngg Date: Mon, 8 Jun 2020 15:39:29 +0400 Subject: [PATCH] Fix bug while checking if anything was changed --- .../simplemobiletools/calendar/pro/activities/EventActivity.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/calendar/pro/activities/EventActivity.kt b/app/src/main/kotlin/com/simplemobiletools/calendar/pro/activities/EventActivity.kt index eaa7e7ee8..dbf252738 100644 --- a/app/src/main/kotlin/com/simplemobiletools/calendar/pro/activities/EventActivity.kt +++ b/app/src/main/kotlin/com/simplemobiletools/calendar/pro/activities/EventActivity.kt @@ -284,7 +284,7 @@ class EventActivity : SimpleActivity() { val reminders = getReminders() if (event_title.value != mEvent.title || event_location.value != mEvent.location || - event_description.value != mEvent.location || + event_description.value != mEvent.description || newStartTS != mEvent.startTS || newEndTS != mEvent.endTS || event_time_zone.text != mEvent.getTimeZoneString() ||