Added one more None check

This commit is contained in:
Profitroll 2022-12-21 15:23:36 +01:00
parent a906c0a1cc
commit 6874268154
1 changed files with 2 additions and 1 deletions

View File

@ -50,7 +50,8 @@ async def any_stage(app, msg):
return
await holo_user.application_next(msg.text, msg=msg)
if msg.text is not None:
await holo_user.application_next(msg.text, msg=msg)
# user_stage = configGet("stage", file=str(msg.from_user.id))