with 1.58 no problems here
Posts by erkman77
-
-
in buildbouquets.py in live and vod section is series_id
update.py only in vod section
-
the snippet is from history on github/kiddac ....
buildbouquets.pyandupdate.py
-
External, Live, Vod, Series
but what i see , only Live and Vod are gone, Series are still there for me.
perhaps something here?Code
Display Moreif self.live_streams: for channel in self.live_streams: - stream_id = str(channel["stream_id"]) + stream_id = channel.get("stream_id") category_id = channel.get("category_id") if not stream_id or not category_id: @@ -607,7 +607,7 @@ def loadVod(self): if self.vod_streams: for channel in self.vod_streams: - stream_id = str(channel["stream_id"]) + stream_id = channel.get("series_id") category_id = channel.get("category_id") if not stream_id or not category_id:
