From ef1a7b7a457f4162488b52275b31a1a79be9d9e7 Mon Sep 17 00:00:00 2001 From: mediaminister Date: Fri, 17 Oct 2025 11:39:30 +0200 Subject: [PATCH] Fix channel catalogs --- resources/lib/modules/channels.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/modules/channels.py b/resources/lib/modules/channels.py index 9459b01..aa3cd44 100644 --- a/resources/lib/modules/channels.py +++ b/resources/lib/modules/channels.py @@ -64,7 +64,7 @@ def show_channel_menu(self, uuid): raise channel = next(channel for channel in items if channel.uuid == uuid) - channel_id = (channel.brand or channel.title).lower() + channel_id = channel.title.lower().replace(' ', '_') listing = []