aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-07-23 13:46:04 -0700
committerAllan Wang <me@allanwang.ca>2017-07-23 13:46:04 -0700
commitd6346fade1d52600482c911ec4b86b494c8338f3 (patch)
tree08f1dac33e1acc04ff7b5c1e4ff88948dfb3ce38
parent138824065679d3cd88f7f80d48728ffdc777704a (diff)
downloadfrost-d6346fade1d52600482c911ec4b86b494c8338f3.tar.gz
frost-d6346fade1d52600482c911ec4b86b494c8338f3.tar.bz2
frost-d6346fade1d52600482c911ec4b86b494c8338f3.zip
Log pathv1.3.6
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/contracts/FileChooser.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/contracts/FileChooser.kt b/app/src/main/kotlin/com/pitchedapps/frost/contracts/FileChooser.kt
index 5b2cfa49..447316d7 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/contracts/FileChooser.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/contracts/FileChooser.kt
@@ -47,7 +47,7 @@ class FileChooserDelegate : FileChooserContract {
var results: Uri? = null
if (resultCode == Activity.RESULT_OK && intent != null) results = Uri.parse(intent.dataString)
- L.d("Callback received; ${filePathCallback != null}")
+ L.d("Callback received; ${filePathCallback != null} $results")
filePathCallback?.onReceiveValue(if (results == null) null else arrayOf(results))
filePathCallback = null
return true