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 b7c5170 commit cd13196Copy full SHA for cd13196
models/OpenAPI/Parser.cfc
@@ -221,7 +221,7 @@ component name="OpenAPIParser" accessors="true" {
221
if ( isStruct( item ) ) {
222
223
// If `item` is an instance of Parser, we need to flattin it to a CFML struct
224
- if ( isInstanceOf( item, "Parser" ) ) {
+ if ( findNoCase( "Parser", getMetaData( item ).name ) ) {
225
item = item.getNormalizedDocument();
226
}
227
0 commit comments