This commit is contained in:
markcowl 2021-06-15 22:04:05 -07:00
Родитель 8c8917adda
Коммит 341baba352
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -8,7 +8,7 @@ export interface HttpOperationType extends OperationType {
}
export function getHttpOperation(operation: OperationType): HttpOperationType | undefined {
if (!isResource(operation)) {
if (!operation.namespace || !isResource(operation.namespace!)) {
return undefined;
}
return {