Skip to content

Commit

Permalink
fix multi EPG request
Browse files Browse the repository at this point in the history
  • Loading branch information
DYefremov committed Feb 16, 2024
1 parent e7a61e3 commit 506e07e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/ui/epg/epg.py
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ def get_multi_epg(self):
bq, api = self._app.current_bouquet_files.get(self._current_bq, None), self._app.http_api
if bq and api:
tm = datetime.now().timestamp()
req = quote(f'FROM BOUQUET "userbouquet.{bq}.{self._current_bq.split(":")[-1]}"&time={tm}')
req = quote(f'FROM BOUQUET "{bq}"&time={tm}')
api.send(HttpAPI.Request.EPG_MULTI, f'1:7:1:0:0:0:0:0:0:0:{req}', self.update_http_epg_data, timeout=15)
else:
srvs = self._app.current_services
Expand Down

0 comments on commit 506e07e

Please sign in to comment.