Changed result if nothing has been imported

This commit is contained in:
merkost
2023-07-10 23:27:10 +10:00
parent 6614539186
commit cd899849fe
2 changed files with 2 additions and 2 deletions

View File

@ -335,6 +335,7 @@ class SettingsActivity : SimpleActivity() {
when (importResult) {
NotesHelper.ImportResult.IMPORT_OK -> toast(R.string.importing_successful)
NotesHelper.ImportResult.IMPORT_PARTIAL -> toast(R.string.importing_some_entries_failed)
NotesHelper.ImportResult.IMPORT_NOTHING_NEW -> toast(R.string.no_new_items)
else -> toast(R.string.importing_failed)
}
}