From 4ec285fecb322d54bdefa521c854f73da6892715 Mon Sep 17 00:00:00 2001 From: vexorian Date: Sun, 16 May 2021 06:47:55 -0400 Subject: [PATCH] #313 Fix console.err bug --- src/video.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video.js b/src/video.js index 1010476..6cf31f6 100644 --- a/src/video.js +++ b/src/video.js @@ -124,7 +124,7 @@ function video( channelDB , fillerDB, db) { router.get('/stream', async (req, res) => { // Check if channel queried is valid res.on("error", (e) => { - console.err("There was an unexpected error in stream.", e); + console.error("There was an unexpected error in stream.", e); } ); if (typeof req.query.channel === 'undefined') { res.status(400).send("No Channel Specified")