Browse Source

Try to fall back to showing URI for storage location if concrete file path isn't available

Closes #9977
arkon 1 năm trước cách đây
mục cha
commit
0c860c0fe9

+ 2 - 1
app/src/main/java/eu/kanade/presentation/more/settings/screen/SettingsDataScreen.kt

@@ -105,7 +105,8 @@ object SettingsDataScreen : SearchableSettings {
         return Preference.PreferenceItem.TextPreference(
             title = stringResource(MR.strings.pref_storage_location),
             subtitle = remember(storageDir) {
-                (UniFile.fromUri(context, storageDir.toUri())?.filePath)
+                val file = UniFile.fromUri(context, storageDir.toUri())
+                file?.filePath ?: file?.uri?.toString()
             } ?: stringResource(MR.strings.invalid_location, storageDir),
             onClick = {
                 try {