From aa4278e7a76db69a45b2f0a87efc33ca98d7401b Mon Sep 17 00:00:00 2001 From: Aetherinox Date: Sat, 5 Apr 2025 08:54:25 -0700 Subject: [PATCH] style: rename env variable `FILE_PLAYLIST` to `FILE_M3U` --- tvapp2/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tvapp2/index.js b/tvapp2/index.js index c081d584..e17309dd 100755 --- a/tvapp2/index.js +++ b/tvapp2/index.js @@ -70,7 +70,7 @@ const FOLDER_WWW = 'www'; const envUrlRepo = process.env.URL_REPO || 'https://git.binaryninja.net/binaryninja'; const envStreamQuality = process.env.STREAM_QUALITY || 'hd'; const envFileURL = process.env.FILE_URL || 'urls.txt'; -const envFileM3U = process.env.FILE_PLAYLIST || 'playlist.m3u8'; +const envFileM3U = process.env.FILE_M3U || 'playlist.m3u8'; const envFileXML = process.env.FILE_EPG || 'xmltv.xml'; const envFileTAR = process.env.FILE_TAR || 'xmltv.xml.gz'; const LOG_LEVEL = process.env.LOG_LEVEL || 10;