We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a708db commit c7f10f0Copy full SHA for c7f10f0
app/src/main/java/com/viscouspot/gitsync/util/Helper.kt
@@ -164,7 +164,7 @@ object Helper {
164
fun getDirSelectionLauncher(activityResultLauncher: ActivityResultCaller, context: Context, callback: ((dirUri: Uri?) -> Unit)): ActivityResultLauncher<Uri?> {
165
return activityResultLauncher.registerForActivityResult(ActivityResultContracts.OpenDocumentTree()) { uri ->
166
uri?.let {
167
- log(LogType.SelectDirectory, "Uri received")
+ log(LogType.SelectDirectory, "Uri received $uri")
168
val uriPath = getPathFromUri(context, it)
169
val directory = File(uriPath)
170
log(LogType.SelectDirectory, "Path selected: $uriPath")
0 commit comments