Compare commits

...

3 Commits

Author SHA1 Message Date
Tom Hacohen f0b19e8c38 Update changelog.
3 years ago
Tom Hacohen 909dc87e40 Bump version.
3 years ago
Tom Hacohen 6d5136fbbb Import: fix crashes for some users when activities disappear.
3 years ago

@ -1,6 +1,9 @@
# Changelog
*NOTE:* may be removed in the future in favor of the fastlane changelog.
## Version 2.2.4
* Import: fix crashes for some users after import finishes.
## Version 2.2.3
* Fix issues with the Tasks.org integration and subtasks (due to rewriting UIDs).

@ -21,8 +21,8 @@ android {
minSdkVersion 21
targetSdkVersion 29
versionCode 20203
versionName "2.2.3"
versionCode 20204
versionName "2.2.4"
buildConfigField "boolean", "customCerts", "true"
}

@ -192,7 +192,7 @@ class LocalCalendarImportFragment : ListFragment() {
return
}
if (progressDialog.isShowing && !activity.isDestroyed) {
if (progressDialog.isShowing && !activity.isDestroyed && !activity.isFinishing) {
progressDialog.dismiss()
}
onImportResult(result)

@ -127,7 +127,7 @@ class LocalContactImportFragment : Fragment() {
return
}
if (progressDialog.isShowing && !activity.isDestroyed) {
if (progressDialog.isShowing && !activity.isDestroyed && !activity.isFinishing) {
progressDialog.dismiss()
}
onImportResult(result)

@ -0,0 +1 @@
* Import: fix crashes for some users after import finishes.
Loading…
Cancel
Save