This commit is contained in:
Christopher Cookman 2024-08-06 23:53:44 -06:00
parent f684272410
commit 655a7b0b22
Signed by: ChrisChrome
GPG key ID: A023A26E42C33A42

View file

@ -443,6 +443,7 @@ app.post("/api/v1/tts", (req, res) => {
res.status(204).send(); res.status(204).send();
}).catch((error) => { }).catch((error) => {
res.status(500).send(error); res.status(500).send(error);
console.log(error.stack)
}); });
}); });