Fix: Remove emoji from error messages in download and info controllers

This commit is contained in:
MasterAcnolo
2026-04-14 09:31:23 +02:00
parent 44ed1bbf0e
commit ce14b8abd7
2 changed files with 5 additions and 5 deletions

View File

@@ -64,7 +64,7 @@ async function infoController(req, res){
} catch (err) {
logger.error(`Info controller error: ${err && err.message ? err.message : err}`);
return res.status(500).send(`Unable to fetch info`);
return res.status(500).send(`Unable to fetch info`);
}
}