android: Fix added driver path

While this didn't break anything, the extra separator was unnecessary
master
t895 2024-01-10 15:36:22 +07:00
parent dac8c4ce4d
commit d3ba6b334b
1 changed files with 1 additions and 1 deletions

@ -179,7 +179,7 @@ class DriverManagerFragment : Fragment() {
false false
) { ) {
val driverPath = val driverPath =
"${GpuDriverHelper.driverStoragePath}/${FileUtil.getFilename(result)}" "${GpuDriverHelper.driverStoragePath}${FileUtil.getFilename(result)}"
val driverFile = File(driverPath) val driverFile = File(driverPath)
// Ignore file exceptions when a user selects an invalid zip // Ignore file exceptions when a user selects an invalid zip