backend: Fixed typo

This commit is contained in:
Carlos Santos 2025-06-04 12:59:17 +02:00
parent 5089df16a7
commit 7532b44043

View File

@ -47,7 +47,7 @@ export const errorUnsupportedMediaType = (supportedTypes: string[]): OpenViduMee
};
export const internalError = (operationDescription: string): OpenViduMeetError => {
return new OpenViduMeetError('Interal Server Error', `Unexpected error while ${operationDescription}`, 500);
return new OpenViduMeetError('Internal Server Error', `Unexpected error while ${operationDescription}`, 500);
};
export const errorLivekitNotAvailable = (): OpenViduMeetError => {