mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-03 02:01:05 +02:00
Merge pull request #445 from qwertyfinger/fix/google-drive-export
Fix error when exporting notes to Google Drive
This commit is contained in:
commit
a33e418391
@ -750,17 +750,19 @@ 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 (syncFile) {
|
if (exportedSuccessfully) {
|
||||||
mCurrentNote.path = exportPath
|
if (syncFile) {
|
||||||
mCurrentNote.value = ""
|
mCurrentNote.path = exportPath
|
||||||
} else {
|
mCurrentNote.value = ""
|
||||||
mCurrentNote.path = ""
|
} else {
|
||||||
mCurrentNote.value = textToExport
|
mCurrentNote.path = ""
|
||||||
}
|
mCurrentNote.value = textToExport
|
||||||
|
}
|
||||||
|
|
||||||
getPagerAdapter().updateCurrentNoteData(view_pager.currentItem, mCurrentNote.path, mCurrentNote.value)
|
getPagerAdapter().updateCurrentNoteData(view_pager.currentItem, mCurrentNote.path, mCurrentNote.value)
|
||||||
NotesHelper(this).insertOrUpdateNote(mCurrentNote)
|
NotesHelper(this).insertOrUpdateNote(mCurrentNote)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -792,23 +794,26 @@ 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 (syncFile) {
|
if (exportedSuccessfully) {
|
||||||
note.path = file.absolutePath
|
if (syncFile) {
|
||||||
note.value = ""
|
note.path = file.absolutePath
|
||||||
} else {
|
note.value = ""
|
||||||
note.path = ""
|
} else {
|
||||||
note.value = noteStoredValue
|
note.path = ""
|
||||||
|
note.value = noteStoredValue
|
||||||
|
}
|
||||||
|
|
||||||
|
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++
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -880,7 +885,7 @@ class MainActivity : SimpleActivity() {
|
|||||||
|
|
||||||
private fun exportNoteValueToUri(uri: Uri, content: String, callback: ((success: Boolean) -> Unit)? = null) {
|
private fun exportNoteValueToUri(uri: Uri, content: String, callback: ((success: Boolean) -> Unit)? = null) {
|
||||||
try {
|
try {
|
||||||
val outputStream = contentResolver.openOutputStream(uri, "wt")
|
val outputStream = contentResolver.openOutputStream(uri, "rwt")
|
||||||
outputStream!!.bufferedWriter().use { out ->
|
outputStream!!.bufferedWriter().use { out ->
|
||||||
out.write(content)
|
out.write(content)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user