Simplify mind-bending condition to continue checking handlers (#4247)

This commit is contained in:
apepenkov 2023-11-09 19:40:48 +03:00 committed by GitHub
parent 35fd0cc62b
commit d32967eefe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -273,7 +273,7 @@ class Client:
self._handlers: Dict[
Type[Event], List[Tuple[Callable[[Any], Awaitable[Any]], Optional[Filter]]]
] = {}
self._shortcircuit_handlers = not check_all_handlers
self._check_all_handlers = check_all_handlers
if self._session.user and self._config.catch_up and self._session.state:
self._message_box.load(self._session.state)

View File

@ -154,5 +154,5 @@ async def dispatch_next(client: Client) -> None:
for handler, filter in handlers:
if not filter or filter(event):
ret = await handler(event)
if ret is not Continue or client._shortcircuit_handlers:
if not (ret is Continue or client._check_all_handlers):
return