File tree Expand file tree Collapse file tree
modules/openapi-generator/src/main/resources/kotlin-client/libraries/jvm-ktor Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ import com.fasterxml.jackson.databind.ObjectMapper
7272 { {{paramName} }}?.apply { append(" {{{baseName}}}" , {{{paramName} }}.toString()) }
7373 { {/isNumber} }
7474 { {#isNumber} }
75- { {{paramName} }}?.apply { append(" {{{baseName}}}" , {{{paramName} }}) }
75+ { {{paramName} }}?.apply { append(" {{{baseName}}}" , {{{paramName} }}.toString() ) }
7676 { {/isNumber} }
7777 { {/isString} }
7878 { {#isString} }
@@ -101,7 +101,7 @@ import com.fasterxml.jackson.databind.ObjectMapper
101101 { {{paramName} }}?.apply { it.append(" {{{baseName}}}" , {{{paramName} }}.toString()) }
102102 { {/isNumber} }
103103 { {#isNumber} }
104- { {{paramName} }}?.apply { it.append(" {{{baseName}}}" , {{{paramName} }}) }
104+ { {{paramName} }}?.apply { it.append(" {{{baseName}}}" , {{{paramName} }}.toString() ) }
105105 { {/isNumber} }
106106 { {/isString} }
107107 { {#isString} }
You can’t perform that action at this time.
0 commit comments