Fix crash when deleting a lonely image

This commit is contained in:
Matéo Duparc 2021-04-07 17:39:10 +02:00
parent 8da43a4452
commit a4db2740a1
Signed by: hardcoresushi
GPG Key ID: 007F84120107191E

View File

@ -119,6 +119,7 @@ class ImageViewer: FileViewerActivity() {
.keepFullScreen() .keepFullScreen()
.setTitle(R.string.warning) .setTitle(R.string.warning)
.setPositiveButton(R.string.ok) { _, _ -> .setPositiveButton(R.string.ok) { _, _ ->
createPlaylist() //be sure the playlist is created before deleting if there is only one image
if (gocryptfsVolume.removeFile(filePath)) { if (gocryptfsVolume.removeFile(filePath)) {
playlistNext(true) playlistNext(true)
refreshPlaylist() refreshPlaylist()