mirror of
https://github.com/SimpleMobileTools/Simple-Draw.git
synced 2025-02-09 16:28:45 +01:00
make sure there is no extra slash at the save path
This commit is contained in:
parent
6a9e039718
commit
73637c6305
@ -55,7 +55,7 @@ class SaveImageDialog(val activity: SimpleActivity, val defaultExtension: String
|
||||
else -> JPG
|
||||
}
|
||||
|
||||
val newPath = "$folder/$filename.$extension"
|
||||
val newPath = "${folder.trimEnd('/')}/$filename.$extension"
|
||||
if (!newPath.getFilenameFromPath().isAValidFilename()) {
|
||||
activity.toast(R.string.filename_invalid_characters)
|
||||
return@setOnClickListener
|
||||
|
Loading…
x
Reference in New Issue
Block a user