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 3602c93 + d28818b commit bd9910dCopy full SHA for bd9910d
packages/text/src/text_communication_protocol.ts
@@ -91,7 +91,7 @@ export class TextCommunicationProtocol implements CommunicationProtocol {
91
if (data && typeof data === 'object' && (data.openapi || data.swagger || data.paths)) {
92
this._log_info('Detected OpenAPI specification. Converting to UTCP manual.');
93
const converter = new OpenApiConverter(data, {
94
- specUrl: textCallTemplate.file_path ? `file://${sourceInfo}` : 'direct-content://',
+ specUrl: textCallTemplate.content ? 'direct-content://' : `file://${sourceInfo}`,
95
callTemplateName: textCallTemplate.name,
96
authTools: textCallTemplate.auth_tools || undefined,
97
});
0 commit comments