Fix online bug
This commit is contained in:
parent
09b7e00e88
commit
cee3d6ecca
@ -13,7 +13,7 @@ class Vtuber:
|
||||
self.face: str = data["face"]
|
||||
self.follower: int = data["follower"]
|
||||
self.liveStatus: bool = data["liveStatus"]
|
||||
self.online: Optional[int, bool] = data["online"]
|
||||
self.online: int = data["online"] if data["online"] else 0
|
||||
self.notice: str = data["notice"].replace(r"\n", "\n")
|
||||
self.time: int = data["time"]
|
||||
self.timeStr: str = strf_time(self.time)
|
||||
|
@ -60,7 +60,7 @@ async def run_every_10_minute():
|
||||
await sleep(uniform(0.5, 2.0))
|
||||
|
||||
|
||||
@scheduler.scheduled_job("cron", hour="*/12", id="0")
|
||||
@scheduler.scheduled_job("cron", hour="*/12", minute="0", id="0")
|
||||
async def run_every_12_hour():
|
||||
await update_info()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user