mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-04 10:41:08 +02:00
Merge pull request #622 from ismailnurudeen/fix/import-from-internet
fix: separate error message for network exception during import
This commit is contained in:
commit
ea1a6cd372
@ -1,5 +1,6 @@
|
||||
package com.simplemobiletools.notes.pro.activities
|
||||
|
||||
import android.accounts.NetworkErrorException
|
||||
import android.annotation.SuppressLint
|
||||
import android.app.Activity
|
||||
import android.content.ActivityNotFoundException
|
||||
@ -872,6 +873,8 @@ class MainActivity : SimpleActivity() {
|
||||
startActivityForResult(this, PICK_EXPORT_FILE_INTENT)
|
||||
} catch (e: ActivityNotFoundException) {
|
||||
toast(R.string.system_service_disabled, Toast.LENGTH_LONG)
|
||||
} catch (e: NetworkErrorException) {
|
||||
toast(getString(R.string.cannot_load_over_internet), Toast.LENGTH_LONG)
|
||||
} catch (e: Exception) {
|
||||
showErrorToast(e)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user