make sure there is no extra slash at the save path
This commit is contained in:
parent
6a9e039718
commit
73637c6305
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ class SaveImageDialog(val activity: SimpleActivity, val defaultExtension: String
|
||||||
else -> JPG
|
else -> JPG
|
||||||
}
|
}
|
||||||
|
|
||||||
val newPath = "$folder/$filename.$extension"
|
val newPath = "${folder.trimEnd('/')}/$filename.$extension"
|
||||||
if (!newPath.getFilenameFromPath().isAValidFilename()) {
|
if (!newPath.getFilenameFromPath().isAValidFilename()) {
|
||||||
activity.toast(R.string.filename_invalid_characters)
|
activity.toast(R.string.filename_invalid_characters)
|
||||||
return@setOnClickListener
|
return@setOnClickListener
|
||||||
|
|
Loading…
Reference in a new issue