From 8a8179bcb957b2aedfce1cb72012c05dc7b9ae88 Mon Sep 17 00:00:00 2001 From: Toha Date: Sun, 26 Apr 2026 22:08:09 +0700 Subject: [PATCH] Remove unused parameter and semicolon. Signed-off-by: Toha --- sites/cubmu.com/cubmu.com.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sites/cubmu.com/cubmu.com.config.js b/sites/cubmu.com/cubmu.com.config.js index f3d9a1238..a994a967c 100644 --- a/sites/cubmu.com/cubmu.com.config.js +++ b/sites/cubmu.com/cubmu.com.config.js @@ -35,7 +35,7 @@ module.exports = { } } }, - parser({ content, channel }) { + parser({ content }) { const programs = [] if (content && typeof content === 'string') { content = JSON.parse(content) @@ -139,6 +139,6 @@ async function fetchAccessToken() { } } if (!accessToken) { - throw new Error(`Unable to fetch access token from ${url}!`); + throw new Error(`Unable to fetch access token from ${url}!`) } }