do not trim some fields at searching changes before discarding

This commit is contained in:
tibbi 2021-03-10 19:02:04 +01:00
parent ec955d0ef4
commit f26fbcb75a
1 changed files with 3 additions and 3 deletions

View File

@ -290,9 +290,9 @@ class EventActivity : SimpleActivity() {
}
val reminders = getReminders()
if (event_title.value != mEvent.title ||
event_location.value != mEvent.location ||
event_description.value != mEvent.description ||
if (event_title.text.toString() != mEvent.title ||
event_location.text.toString() != mEvent.location ||
event_description.text.toString() != mEvent.description ||
event_time_zone.text != mEvent.getTimeZoneString() ||
reminders != mEvent.getReminders() ||
mRepeatInterval != mEvent.repeatInterval ||