There was an error while loading. Please reload this page.
1 parent 84b7b01 commit fc1b121Copy full SHA for fc1b121
src/main/kotlin/io/openapiprocessor/spring/model/parameters/QueryParameter.kt
@@ -78,11 +78,11 @@ class QueryParameter(
78
79
private val isMappedObject: Boolean
80
get() {
81
- if (dataType !is MappedSourceDataType) {
+ if (dataType !is SourceDataType) {
82
return false
83
}
84
85
- val mapped = dataType as MappedSourceDataType
+ val mapped = dataType as SourceDataType
86
return mapped.sourceDataType is ObjectDataType
87
88
0 commit comments