mirror of
https://github.com/SimpleMobileTools/Simple-Calendar.git
synced 2025-03-17 11:50:23 +01:00
do not trim some fields at searching changes before discarding
This commit is contained in:
parent
ec955d0ef4
commit
f26fbcb75a
@ -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 ||
|
||||
|
Loading…
x
Reference in New Issue
Block a user