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.
2 parents 9754b19 + bde2343 commit 2dd681fCopy full SHA for 2dd681f
templates/android/library/src/main/java/io/package/services/Service.kt.twig
@@ -84,7 +84,9 @@ class {{ service.name | caseUcfirst }}(client: Client) : Service(client) {
84
return@forEach
85
}
86
is List<*> -> {
87
- apiQuery.add("${it.key}[]=${it.value.toString()}")
+ (it.value as List<*>).forEach { v ->
88
+ apiQuery.add("${it.key}[]=${v.toString()}")
89
+ }
90
91
else -> {
92
apiQuery.add("${it.key}=${it.value.toString()}")
0 commit comments