mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-03 10:11:09 +02:00
shortening some code
This commit is contained in:
parent
f3b14460df
commit
386767bd6f
@ -610,12 +610,10 @@ class MainActivity : SimpleActivity() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private fun addNoteFromUri(uri: Uri, filename: String? = null) {
|
private fun addNoteFromUri(uri: Uri, filename: String? = null) {
|
||||||
val noteTitle = if (filename?.isEmpty() == false) {
|
val noteTitle = when {
|
||||||
filename
|
filename?.isEmpty() == false -> filename
|
||||||
} else if (uri.toString().startsWith("content://")) {
|
uri.toString().startsWith("content://") -> getFilenameFromContentUri(uri) ?: getNewNoteTitle()
|
||||||
getFilenameFromContentUri(uri) ?: getNewNoteTitle()
|
else -> getNewNoteTitle()
|
||||||
} else {
|
|
||||||
getNewNoteTitle()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
val inputStream = contentResolver.openInputStream(uri)
|
val inputStream = contentResolver.openInputStream(uri)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user