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 34146d9 commit 7628d4aCopy full SHA for 7628d4a
android/src/main/java/com/doublesymmetry/trackplayer/utils/BundleUtils.kt
@@ -16,7 +16,7 @@ object BundleUtils {
16
val obj = data[key]
17
if (obj is String) {
18
// Remote or Local Uri
19
- if (obj.trim { it <= ' ' }.isEmpty()) throw RuntimeException("The URL cannot be empty")
+ if (obj.trim { it <= ' ' }.isEmpty()) throw RuntimeException("$key: The URL cannot be empty")
20
return Uri.parse(obj as String?)
21
} else if (obj is Bundle) {
22
// require/import
0 commit comments