Fix: Not show Error Msg when not living

This commit is contained in:
Jerry Yan 2019-02-01 16:34:14 +08:00
parent a0f76eb00b
commit ebe01566c0

View File

@ -23,7 +23,7 @@ class downloader(XiGuaLiveApi):
self.updPlayList() self.updPlayList()
def updPlayList(self): def updPlayList(self):
if api.isLive: if self.isLive:
if "stream_url" not in self._rawRoomInfo: if "stream_url" not in self._rawRoomInfo:
if self.playlist is None: if self.playlist is None:
self.apiChangedError("无法获取直播链接") self.apiChangedError("无法获取直播链接")
@ -31,6 +31,8 @@ class downloader(XiGuaLiveApi):
else: else:
self.playlist = self._rawRoomInfo["stream_url"]["alternate_pull_url"] self.playlist = self._rawRoomInfo["stream_url"]["alternate_pull_url"]
self.playlist = self.playlist.replace("_uhd","").replace("_sd","").replace("_ld","") self.playlist = self.playlist.replace("_uhd","").replace("_sd","").replace("_ld","")
else:
print("未开播,等待开播")
def onLike(self, user): def onLike(self, user):
pass pass