1
0
mirror of https://github.com/etesync/android synced 2025-02-02 02:41:31 +00:00

Import from file: dismiss dialog and print an error in a missed error case.

This commit is contained in:
Tom Hacohen 2019-02-23 21:24:26 +00:00
parent 51a29b4401
commit 4fb49cf5f4

View File

@ -139,22 +139,31 @@ class ImportFragment : DialogFragment() {
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
when (requestCode) {
REQUEST_CODE -> if (resultCode == Activity.RESULT_OK) {
if (data != null) {
// Get the URI of the selected file
val uri = data.data
App.log.info("Importing uri = " + uri!!.toString())
try {
importFile = File(com.etesync.syncadapter.utils.FileUtils.getPath(context!!, uri))
REQUEST_CODE -> {
if (resultCode == Activity.RESULT_OK) {
if (data != null) {
// Get the URI of the selected file
val uri = data.data
App.log.info("Importing uri = " + uri!!.toString())
try {
importFile = File(com.etesync.syncadapter.utils.FileUtils.getPath(context!!, uri))
Thread(ImportCalendarsLoader()).start()
} catch (e: Exception) {
App.log.severe("File select error: ${e.message}")
val importResult = ImportResult()
importResult.e = e
(activity as ResultFragment.OnImportCallback).onImportResult(importResult)
dismissAllowingStateLoss()
}
Thread(ImportCalendarsLoader()).start()
} catch (e: Exception) {
App.log.severe("File select error: " + e.localizedMessage)
}
} else {
dismissAllowingStateLoss()
}
} else {
dismissAllowingStateLoss()
}
}
super.onActivityResult(requestCode, resultCode, data)