mirror of
https://github.com/xuthus83/LittlePaimon.git
synced 2024-10-21 16:27:15 +08:00
🐛 修复一些因为时区非Asia/Shanghai
导致的时间判断问题
This commit is contained in:
parent
71f3b5170c
commit
5290b0fc72
@ -82,13 +82,13 @@ async def check_note():
|
||||
return
|
||||
if not subs:
|
||||
return
|
||||
logger.info('原神实时便签', f'开始执行定时检查,共<m>{len(subs)}</m>个任务,预计花费<m>{round(3 * len(subs) / 60, 2)}</m>分钟')
|
||||
logger.info('原神实时便签', f'开始执行定时检查,共<m>{len(subs)}</m>个任务,预计花费<m>{round(6 * len(subs) / 60, 2)}</m>分钟')
|
||||
for sub in subs:
|
||||
limit_num = 5 if sub.resin_num and sub.coin_num else 3
|
||||
if sub.today_remind_num <= limit_num and (
|
||||
sub.last_remind_time is None or (sub.last_remind_time is not None and (
|
||||
sub.last_remind_time < (datetime.datetime.now() - datetime.timedelta(minutes=30)).replace(
|
||||
tzinfo=pytz.timezone('Asia/Shanghai'))))):
|
||||
sub.last_remind_time + datetime.timedelta(minutes=30) <= datetime.datetime.now().replace(
|
||||
tzinfo=pytz.timezone('UTC'))))):
|
||||
data = await get_mihoyo_private_data(sub.uid, str(sub.user_id), 'daily_note')
|
||||
if isinstance(data, str):
|
||||
logger.info('原神实时便签', '➤', {'用户': sub.user_id, 'UID': sub.uid}, 'Cookie未绑定或已失效,删除任务', False)
|
||||
|
@ -34,7 +34,7 @@ async def get_statistics(group_id: int):
|
||||
member_id_list = [str(member['user_id']) for member in member_list]
|
||||
info_list = [info for info in info_list if
|
||||
info.user_id in member_id_list and info.total_battle and info.total_star and info.max_damage and info.max_take_damage]
|
||||
now = datetime.datetime.now().replace(tzinfo=pytz.timezone('Asia/Shanghai'))
|
||||
now = datetime.datetime.now().replace(tzinfo=pytz.timezone('UTC'))
|
||||
info_list = [info for info in info_list if info.start_time <= now <= info.end_time]
|
||||
if not info_list:
|
||||
return '本群还没有深渊战斗数据哦!'
|
||||
|
@ -170,7 +170,7 @@ class GenshinInfoManager:
|
||||
"""如果角色不存在或者角色的更新时间在6小时前,则更新角色信息"""
|
||||
character = await Character.get_or_none(**query, data_source='enka')
|
||||
if not character or character.update_time < (datetime.datetime.now() - datetime.timedelta(hours=pm.config.ysd_auto_update)).replace(
|
||||
tzinfo=pytz.timezone('Asia/Shanghai')):
|
||||
tzinfo=pytz.timezone('UTC')):
|
||||
await self.update_from_enka()
|
||||
if character := await Character.get_or_none(**query, data_source='enka'):
|
||||
logger.info('原神角色面板', '➤➤', {'角色': name or character_id}, '数据更新成功', True)
|
||||
@ -194,7 +194,7 @@ class GenshinInfoManager:
|
||||
player_info = await PlayerInfo.get_or_none(user_id=self.user_id, uid=self.uid)
|
||||
if player_info is None or player_info.update_time is None or player_info.update_time < (
|
||||
datetime.datetime.now() - datetime.timedelta(hours=pm.config.ysa_auto_update)).replace(
|
||||
tzinfo=pytz.timezone('Asia/Shanghai')):
|
||||
tzinfo=pytz.timezone('UTC')):
|
||||
result = await self.update_from_mihoyo()
|
||||
if result != '更新成功':
|
||||
return result, []
|
||||
@ -211,7 +211,7 @@ class GenshinInfoManager:
|
||||
player_info = await PlayerInfo.get_or_none(user_id=self.user_id, uid=self.uid)
|
||||
if player_info is None or player_info.update_time is None or player_info.update_time < (
|
||||
datetime.datetime.now() - datetime.timedelta(hours=pm.config.ys_auto_update)).replace(
|
||||
tzinfo=pytz.timezone('Asia/Shanghai')):
|
||||
tzinfo=pytz.timezone('UTC')):
|
||||
result = await self.update_from_mihoyo()
|
||||
if result != '更新成功':
|
||||
return result, None
|
||||
|
Loading…
Reference in New Issue
Block a user