From 1bc0e5b887a9f8d74a85d9c80351d9cde043504e Mon Sep 17 00:00:00 2001 From: Nirvana Date: Wed, 17 Jun 2026 10:48:31 +0200 Subject: [PATCH] restructure epg --- docker-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index 234a813..a1a1383 100644 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -47,7 +47,7 @@ if [ ! -d "/app/routes/streams" ]; then MISSING_FILES=$((MISSING_FILES + 1)) else # Verify all required stream module files exist - REQUIRED_STREAM_MODULES=("__init__.py" "channels.py" "events.py" "vod.py" "recordings.py" "epg.py") + REQUIRED_STREAM_MODULES=("__init__.py" "channels.py" "events.py" "vod.py" "recordings.py") for module in "${REQUIRED_STREAM_MODULES[@]}"; do if [ ! -f "/app/routes/streams/$module" ]; then echo "ERROR: Missing required stream module: /app/routes/streams/$module"