From 45f54e283fd1a48155f655b0db24367bafa05ece Mon Sep 17 00:00:00 2001 From: Nirvana Date: Sat, 13 Jun 2026 16:00:19 +0200 Subject: [PATCH] fix catchup --- service.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/service.py b/service.py index 7b0c3c9..4f1a771 100644 --- a/service.py +++ b/service.py @@ -824,7 +824,7 @@ class UltimateService: # Get catchup information from channel catchup_window = getattr(channel, 'catchup_hours', 0) # in hours catchup_type = getattr(channel, 'catchup_type', 'append') - catchup_source = getattr(channel, 'catchup_source', '?start_time={start}&end_time={end}') + catchup_source = getattr(channel, 'catchup_source', '?start_time={utc}&end_time={utcend}') # Build EXTINF line with catchup tags if available import math @@ -898,7 +898,7 @@ class UltimateService: # Get catchup information from channel catchup_window = getattr(channel, 'catchup_hours', 0) # in hours catchup_type = getattr(channel, 'catchup_type', 'append') - catchup_source = getattr(channel, 'catchup_source', '?start_time={start}&end_time={end}') + catchup_source = getattr(channel, 'catchup_source', '?start_time={utc}&end_time={utcend}') import math # Build EXTINF line with catchup tags if available @@ -984,7 +984,7 @@ class UltimateService: # Get catchup information catchup_window = getattr(channel, 'catchup_hours', 0) - catchup_source = getattr(channel, 'catchup_source', '?start_time={start}&end_time={end}') + catchup_source = getattr(channel, 'catchup_source', '?start_time={utc}&end_time={utcend}') catchup_type = getattr(channel, 'catchup_type', 'append') import math