Skip to content

Commit

Permalink
DO NOT MERGE: Find new internal storage title
Browse files Browse the repository at this point in the history
  • Loading branch information
grote committed Mar 6, 2024
1 parent 7137217 commit 7d98243
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,11 @@ internal class StorageRootFetcher(private val context: Context, private val isRe
}
// there's a couple of options, we still want to show, even if no roots are found for them
safStorageOptions.checkOrAddExtraRoots(roots)
return roots
return roots.apply {
forEach {
Log.e("TEST42", "${it.uri} ${it.title} ")
}
}
}

private fun getRoots(providerInfo: ProviderInfo): List<SafOption> {
Expand Down

0 comments on commit 7d98243

Please sign in to comment.