aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib/client-html.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-07-18 11:55:13 +0200
committerChocobozzz <me@florianbigard.com>2022-07-18 11:55:13 +0200
commit1cc9774668827c1255e4cd0775cb781c7f73051c (patch)
tree6ee5099e069e35ca100e74ac1de54ba94113a9b3 /server/lib/client-html.ts
parent42b40636991b97fe818007fab19091764fc5db73 (diff)
downloadPeerTube-1cc9774668827c1255e4cd0775cb781c7f73051c.tar.gz
PeerTube-1cc9774668827c1255e4cd0775cb781c7f73051c.tar.zst
PeerTube-1cc9774668827c1255e4cd0775cb781c7f73051c.zip
Fix incorrect error logs
Diffstat (limited to 'server/lib/client-html.ts')
-rw-r--r--server/lib/client-html.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/lib/client-html.ts b/server/lib/client-html.ts
index 899d80c15..4fd9a4263 100644
--- a/server/lib/client-html.ts
+++ b/server/lib/client-html.ts
@@ -576,7 +576,7 @@ async function serveIndexHTML (req: express.Request, res: express.Response) {
576 await generateHTMLPage(req, res, req.params.language) 576 await generateHTMLPage(req, res, req.params.language)
577 return 577 return
578 } catch (err) { 578 } catch (err) {
579 logger.error('Cannot generate HTML page.', err) 579 logger.error('Cannot generate HTML page.', { err })
580 return res.status(HttpStatusCode.INTERNAL_SERVER_ERROR_500).end() 580 return res.status(HttpStatusCode.INTERNAL_SERVER_ERROR_500).end()
581 } 581 }
582 } 582 }