Merge pull request #622 from ismailnurudeen/fix/import-from-internet

fix: separate error message for network exception during import
This commit is contained in:
Tibor Kaputa 2023-05-12 10:08:48 +02:00 committed by GitHub
commit ea1a6cd372
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
21 changed files with 23 additions and 20 deletions

View File

@ -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)
}