From 00000d98d9e074dfa459c361e7a2afee0da9f2e0 Mon Sep 17 00:00:00 2001 From: doms9 <96013514+doms9@users.noreply.github.com> Date: Fri, 20 Feb 2026 19:07:08 -0500 Subject: [PATCH] e --- M3U8/scrapers/streamcenter.py | 2 +- M3U8/scrapers/streamhub.py | 2 +- M3U8/scrapers/tvapp.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/M3U8/scrapers/streamcenter.py b/M3U8/scrapers/streamcenter.py index 161cbb0e..97cf9f2e 100644 --- a/M3U8/scrapers/streamcenter.py +++ b/M3U8/scrapers/streamcenter.py @@ -12,7 +12,7 @@ TAG = "STRMCNTR" CACHE_FILE = Cache(TAG, exp=10_800) -API_FILE = Cache(f"{TAG}-api", exp=28_800) +API_FILE = Cache(f"{TAG}-api", exp=19_800) BASE_URL = "https://backend.streamcenter.live/api/Parties" diff --git a/M3U8/scrapers/streamhub.py b/M3U8/scrapers/streamhub.py index a6b7fd94..eb285465 100644 --- a/M3U8/scrapers/streamhub.py +++ b/M3U8/scrapers/streamhub.py @@ -15,7 +15,7 @@ TAG = "STRMHUB" CACHE_FILE = Cache(TAG, exp=10_800) -HTML_CACHE = Cache(f"{TAG}-html", exp=28_800) +HTML_CACHE = Cache(f"{TAG}-html", exp=19_800) BASE_URL = "https://livesports4u.net" diff --git a/M3U8/scrapers/tvapp.py b/M3U8/scrapers/tvapp.py index cf025bde..f5fe4501 100644 --- a/M3U8/scrapers/tvapp.py +++ b/M3U8/scrapers/tvapp.py @@ -36,7 +36,7 @@ async def process_event(url: str, url_num: int) -> str | None: log.info(f"URL {url_num}) Captured M3U8") - return f"http://origin.thetvapp.to/hls/{channel_name.strip().upper()}/mono.m3u8" + return f"http://origin.thetvapp.to/hls/{channel_name.strip()}/mono.m3u8" async def get_events() -> list[dict[str, str]]: