Browse Source

fix zap2it fetching range

main
Brett Langdon 2 years ago
parent
commit
a72356da2d
No known key found for this signature in database GPG Key ID: 9BAD4322A65AD78B
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/dlhdhr/epg/zap2it.py

+ 1
- 1
src/dlhdhr/epg/zap2it.py View File

@ -63,7 +63,7 @@ class Zap2it:
events = {}
# Fetch up to 18 hours into the future
for i in range(1, 3, 1):
for i in range(3):
params["time"] = str(int(time.time()) + (21600 * i))
res = await client.get("/grid", params=params)
res.raise_for_status()


Loading…
Cancel
Save