api/request/local-processing: don't return an empty audio object

& also throw errors whenever a response is invalid
This commit is contained in:
wukko 2025-03-19 13:38:55 +06:00
parent 9eb342e6d2
commit 6a13ca347d
No known key found for this signature in database
GPG Key ID: 3E30B3F26C7B4AA2
2 changed files with 16 additions and 3 deletions

View File

@ -70,6 +70,19 @@ export function createResponse(responseType, responseData) {
isHLS: responseData?.isHLS,
}
if (!response.audio.format) {
if (response.type === "audio") {
// audio response without a format is invalid
return internalError();
}
delete response.audio;
}
if (!response.output.type || !response.output.filename) {
// response without a type or filename is invalid
return internalError();
}
break;
case "picker":

View File

@ -51,9 +51,9 @@ export type CobaltLocalProcessingResponse = {
service: string,
tunnel: string[],
output?: {
type?: string, // mimetype
filename?: string,
output: {
type: string, // mimetype
filename: string,
metadata?: {
album?: string,
copyright?: string,