fixed a silly mistake that broke soundcloud

also added an error handler for this issue if it happens ever again
This commit is contained in:
wukko
2022-09-04 10:14:25 +06:00
parent bf8571565c
commit ecf2dac5d8
3 changed files with 9 additions and 4 deletions

View File

@@ -73,7 +73,11 @@ if (fs.existsSync('./.env')) {
res.status(j.status).json(j.body);
} else {
let j = apiJSON(3, { t: loc(languageCode(req), 'ErrorNoLink', process.env.selfURL) })
res.status(j.status).json(j.body);
if (!j === undefined && j.status && j.body) {
res.status(j.status).json(j.body);
} else {
res.status(500).json({ 'status': 'error', 'text': loc(languageCode(req), 'ErrorUnknownStatus') })
}
}
break;
case 'stream':