From cc15be8a8abf83be3c46b416b0bad9e36ffb6ecd Mon Sep 17 00:00:00 2001 From: Nirvana Date: Thu, 7 May 2026 15:36:26 +0200 Subject: [PATCH] Implement RTL VOD series/episodes --- lib/streaming_providers/providers/rtlplus/vod_manager.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/streaming_providers/providers/rtlplus/vod_manager.py b/lib/streaming_providers/providers/rtlplus/vod_manager.py index 0aa3661..b1f282b 100644 --- a/lib/streaming_providers/providers/rtlplus/vod_manager.py +++ b/lib/streaming_providers/providers/rtlplus/vod_manager.py @@ -573,7 +573,6 @@ class RTLPlusVodManager: block_id = cb.get("id") if month_title and block_id: - clean_block_id = self._extract_block_id_from_url(block_id) total_episodes = ( cb.get("content", {}) .get("pagination", {}) @@ -582,7 +581,7 @@ class RTLPlusVodManager: seasons.append(VodCategory( name=month_title, - content_id=f"month_{clean_block_id}", + content_id=f"month_{block_id}", provider=self._provider.provider_name, child_count=total_episodes, ))