Fix rescheduling geofence after uncompleting task

pull/757/head 6.3.1
Alex Baker 6 years ago
parent cab1b93529
commit 41e1d489ce

@ -1,7 +1,7 @@
Change Log
---
### 6.3 (2018-11-06)
### 6.3.1 (2018-11-07)
* New location row in task edit screen
* Add location departure notifications

@ -19,8 +19,8 @@ android {
defaultConfig {
testApplicationId "org.tasks.test"
applicationId "org.tasks"
versionCode 544
versionName "6.3"
versionCode 545
versionName "6.3.1"
targetSdkVersion 28
minSdkVersion 16
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

@ -62,7 +62,7 @@ public class AfterSaveWork extends InjectingWorker {
EXTRA_PUSH_CALDAV, !suppress && (force || !current.caldavUpToDate(original)));
if (original != null) {
builder
.putLong(EXTRA_ORIG_DELETED, original.getCompletionDate())
.putLong(EXTRA_ORIG_COMPLETED, original.getCompletionDate())
.putLong(EXTRA_ORIG_DELETED, original.getDeletionDate());
}
return builder.build();

Loading…
Cancel
Save