更新房间时更新更新时间,测试下播触发条件

This commit is contained in:
2020-01-10 09:18:32 +08:00
parent 74120850a4
commit 68fecca012
3 changed files with 8 additions and 5 deletions

5
api.py
View File

@ -188,6 +188,7 @@ class XiGuaLiveApi:
if "user_info" not in d and d["user_info"] is None:
self.apiChangedError("Api发生改变请及时联系我", d)
return False
self._updRoomAt = datetime.now()
self.broadcaster = User(d)
if not self._checkUsernameIsMatched():
self.isLive = False
@ -230,3 +231,7 @@ class XiGuaLiveApi:
return self._updateUserInfo()
else:
return self._getRoomInfo(force)
@property
def updateAt(self):
return self._updRoomAt