Documenter release et demo

This commit is contained in:
Johnnybegood90
2026-03-15 04:51:06 +01:00
parent 68f65f84b2
commit ef374b2633
6 changed files with 46 additions and 4 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ window.addEventListener('load', () => {
const savedSource = localStorage.getItem('gridtv-active-source');
if (savedSource === 'personal') {
const epg = localStorage.getItem('gridtv-personal-epg');
const m3u = localStorage.getItem('gridtv-personal-m3u') ?? '';
const m3u = ALLOW_PERSONAL_M3U ? (localStorage.getItem('gridtv-personal-m3u') ?? '') : '';
if (epg) {
currentEpgUrl = epg;
currentM3uUrl = m3u;