mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 09:05:04 +08:00
🐛 fix #69 stop running expired matcher
This commit is contained in:
parent
829f47c5e7
commit
17747f94c8
@ -92,7 +92,8 @@ async def _check_matcher(priority: int, bot: Bot, event: Event,
|
||||
async def _check(Matcher: Type[Matcher], bot: Bot, event: Event,
|
||||
state: dict) -> Optional[Type[Matcher]]:
|
||||
try:
|
||||
if await Matcher.check_perm(
|
||||
if (Matcher.expire_time and datetime.now() <= Matcher.expire_time
|
||||
) and await Matcher.check_perm(
|
||||
bot, event) and await Matcher.check_rule(bot, event, state):
|
||||
return Matcher
|
||||
except Exception as e:
|
||||
|
Loading…
Reference in New Issue
Block a user