Fix that backup files might be empty

This commit is contained in:
Bnyro 2023-02-25 11:57:57 +01:00
parent b883f160fd
commit ea51fd0f02

View File

@ -92,9 +92,9 @@ class BackupDialog(
backupOptions.forEachIndexed { index, option -> backupOptions.forEachIndexed { index, option ->
if (selected[index]) option.onSelected(backupFile) if (selected[index]) option.onSelected(backupFile)
} }
}
createBackupFile(backupFile) createBackupFile(backupFile)
} }
}
.create() .create()
} }
} }