From 21d1c8bacf68bb28a783bbc891212c8414f5232c Mon Sep 17 00:00:00 2001 From: Aetherinox Date: Tue, 25 Mar 2025 00:28:01 -0700 Subject: [PATCH] refactor: set primary gzip keyword to `/gzip` --- tvapp2/www/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tvapp2/www/index.html b/tvapp2/www/index.html index 93ad0f18..6fe7b206 100644 --- a/tvapp2/www/index.html +++ b/tvapp2/www/index.html @@ -99,7 +99,7 @@ - XML / EPG guide data compressed into tar.gz + XML / EPG guide data in compressed gzip format @@ -125,7 +125,7 @@ const urlBase = window.location.origin; const urlM3U = urlBase + "/playlist"; const urlXML = urlBase + "/epg"; - const urlTAR = urlBase + "/tar"; + const urlTAR = urlBase + "/gzip"; document.getElementById("m3u-name").textContent = "<%= fileM3U %>"; document.getElementById("m3u-name").href = urlM3U;