mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-03 18:21:05 +02:00
Don't update note info if export failed
This commit is contained in:
parent
cbba53b798
commit
ab0d7a5666
@ -750,7 +750,8 @@ class MainActivity : SimpleActivity() {
|
|||||||
|
|
||||||
RadioGroupDialog(this, items) {
|
RadioGroupDialog(this, items) {
|
||||||
val syncFile = it as Int == EXPORT_FILE_SYNC
|
val syncFile = it as Int == EXPORT_FILE_SYNC
|
||||||
tryExportNoteValueToFile(exportPath, textToExport, true) {
|
tryExportNoteValueToFile(exportPath, textToExport, true) { exportedSuccessfully ->
|
||||||
|
if (exportedSuccessfully) {
|
||||||
if (syncFile) {
|
if (syncFile) {
|
||||||
mCurrentNote.path = exportPath
|
mCurrentNote.path = exportPath
|
||||||
mCurrentNote.value = ""
|
mCurrentNote.value = ""
|
||||||
@ -764,6 +765,7 @@ class MainActivity : SimpleActivity() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private fun tryExportAllNotes() {
|
private fun tryExportAllNotes() {
|
||||||
handlePermission(PERMISSION_WRITE_STORAGE) {
|
handlePermission(PERMISSION_WRITE_STORAGE) {
|
||||||
@ -792,7 +794,8 @@ class MainActivity : SimpleActivity() {
|
|||||||
toast(String.format(getString(R.string.filename_invalid_characters_placeholder, filename)))
|
toast(String.format(getString(R.string.filename_invalid_characters_placeholder, filename)))
|
||||||
} else {
|
} else {
|
||||||
val noteStoredValue = note.getNoteStoredValue(this) ?: ""
|
val noteStoredValue = note.getNoteStoredValue(this) ?: ""
|
||||||
tryExportNoteValueToFile(file.absolutePath, note.value, false) {
|
tryExportNoteValueToFile(file.absolutePath, note.value, false) { exportedSuccessfully ->
|
||||||
|
if (exportedSuccessfully) {
|
||||||
if (syncFile) {
|
if (syncFile) {
|
||||||
note.path = file.absolutePath
|
note.path = file.absolutePath
|
||||||
note.value = ""
|
note.value = ""
|
||||||
@ -802,13 +805,15 @@ class MainActivity : SimpleActivity() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
NotesHelper(this).insertOrUpdateNote(note)
|
NotesHelper(this).insertOrUpdateNote(note)
|
||||||
|
}
|
||||||
|
|
||||||
if (mCurrentNote.id == note.id) {
|
if (mCurrentNote.id == note.id) {
|
||||||
mCurrentNote.value = note.value
|
mCurrentNote.value = note.value
|
||||||
mCurrentNote.path = note.path
|
mCurrentNote.path = note.path
|
||||||
getPagerAdapter().updateCurrentNoteData(view_pager.currentItem, mCurrentNote.path, mCurrentNote.value)
|
getPagerAdapter().updateCurrentNoteData(view_pager.currentItem, mCurrentNote.path, mCurrentNote.value)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!it) {
|
if (!exportedSuccessfully) {
|
||||||
failCount++
|
failCount++
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user