Fix: fix some instances of HTTTP

This commit is contained in:
shamoon 2024-11-12 22:31:36 -08:00
parent d87d347aa3
commit 535be37bef
No known key found for this signature in database
4 changed files with 8 additions and 8 deletions

View file

@ -138,7 +138,7 @@ export default async function omadaProxyHandler(req, res) {
const sitesResponseData = JSON.parse(data);
if (status !== 200 || sitesResponseData.errorCode > 0) {
logger.debug(`HTTTP ${status} getting sites list: ${sitesResponseData.msg}`);
logger.debug(`HTTP ${status} getting sites list: ${sitesResponseData.msg}`);
return res
.status(status)
.json({ error: { message: "Error getting sites list", url, data: sitesResponseData } });