mirror of
https://github.com/doms9/iptv.git
synced 2026-01-21 03:59:03 +01:00
e
This commit is contained in:
parent
18ab0fd65b
commit
00000d95af
3 changed files with 3 additions and 3 deletions
|
|
@ -60,7 +60,7 @@ async def main() -> None:
|
|||
asyncio.create_task(streamsgate.scrape(network.client)),
|
||||
asyncio.create_task(strmd.scrape(network.client)),
|
||||
asyncio.create_task(tvpass.scrape(network.client)),
|
||||
# asyncio.create_task(watchfooty.scrape(network.client)),
|
||||
asyncio.create_task(watchfooty.scrape(network.client)),
|
||||
asyncio.create_task(webcast.scrape(network.client)),
|
||||
]
|
||||
|
||||
|
|
|
|||
|
|
@ -89,7 +89,7 @@ async def get_events(
|
|||
if not (ts := event["date"]):
|
||||
continue
|
||||
|
||||
start_ts = int(f"{ts}"[:-3])
|
||||
start_ts = float(f"{ts}"[:-3])
|
||||
|
||||
event_dt = Time.from_ts(start_ts)
|
||||
|
||||
|
|
|
|||
|
|
@ -193,7 +193,7 @@ async def get_events(
|
|||
if not (ts := event.get("ts")):
|
||||
continue
|
||||
|
||||
start_ts = int(f"{ts}"[:-3])
|
||||
start_ts = float(f"{ts}"[:-3])
|
||||
|
||||
event_dt = Time.from_ts(start_ts)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue