From 6b31bafa8eeca42f93170c58264626a486de7beb Mon Sep 17 00:00:00 2001 From: Aetherinox Date: Sat, 31 May 2025 00:44:50 -0700 Subject: [PATCH] chore: clean up tags --- tvapp2/index.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tvapp2/index.js b/tvapp2/index.js index 70d698cc..8e98348b 100755 --- a/tvapp2/index.js +++ b/tvapp2/index.js @@ -110,8 +110,8 @@ const USERAGENT = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:138.0) Gecko/201 http://127.0.0.1:4124/gz http://127.0.0.1:4124/playlist http://127.0.0.1:4124/key - http://127.0.0.1:4124/channel - http://127.0.0.1:4124/health + http://127.0.0.1:4124/channel?url=https://thetvapp.to/tv/bbc-america-live-stream/ + http://127.0.0.1:4124/api/health */ const subdomainGZP = [ 'gzip', 'gz' ]; @@ -1522,7 +1522,7 @@ async function serveM3U( res, req ) const updatedContent = formattedContent .replace( /(https?:\/\/[^\s]*thetvapp[^\s]*)/g, ( fullUrl ) => { - Log.debug( `.m3u`, chalk.yellow( `[assigner]` ), chalk.white( `⚙️` ), + Log.debug( `.m3u`, chalk.yellow( `[rewriter]` ), chalk.white( `⚙️` ), chalk.blueBright( `` ), chalk.gray( `Rewriting url for keyword` ), chalk.blueBright( `` ), chalk.gray( `*thetvapp` ), chalk.blueBright( `` ), chalk.gray( `${ fullUrl }` ), @@ -1532,7 +1532,7 @@ async function serveM3U( res, req ) }) .replace( /(https?:\/\/[^\s]*tvpass[^\s]*)/g, ( fullUrl ) => { - Log.debug( `.m3u`, chalk.yellow( `[assigner]` ), chalk.white( `⚙️` ), + Log.debug( `.m3u`, chalk.yellow( `[rewriter]` ), chalk.white( `⚙️` ), chalk.blueBright( `` ), chalk.gray( `Rewriting url for keyword` ), chalk.blueBright( `` ), chalk.gray( `*tvpass` ), chalk.blueBright( `` ), chalk.gray( `${ fullUrl }` ), @@ -1543,7 +1543,7 @@ async function serveM3U( res, req ) .replace( /(https?:\/\/[^\s]*fl2.moveonjoy[^\s]*)/g, ( fullUrl ) => { const urlRewrite = fullUrl.replace( 'fl2.moveonjoy', 'fl6.moveonjoy' ); - Log.debug( `.m3u`, chalk.yellow( `[assigner]` ), chalk.white( `⚙️` ), + Log.debug( `.m3u`, chalk.yellow( `[rewriter]` ), chalk.white( `⚙️` ), chalk.blueBright( `` ), chalk.gray( `Rewriting url for keyword` ), chalk.blueBright( `` ), chalk.gray( `*fl2.moveonjoy` ), chalk.blueBright( `` ), chalk.gray( `${ fullUrl }` ),