Fixed spoiler flow
This commit is contained in:
parent
66a1ea17ab
commit
c56385a181
@ -6,7 +6,7 @@ from classes.errors.holo_user import UserNotFoundError, UserInvalidError
|
||||
from classes.holo_user import HoloUser
|
||||
from modules.logging import logWrite
|
||||
from modules.utils import locale
|
||||
from modules.database import col_spoilers
|
||||
from modules.database import col_spoilers, col_applications
|
||||
from modules import custom_filters
|
||||
|
||||
# Spoiler command ==============================================================================================================
|
||||
@ -18,18 +18,18 @@ async def cmd_spoiler(app: Client, msg: Message):
|
||||
except (UserInvalidError, UserNotFoundError):
|
||||
return
|
||||
|
||||
if holo_user.application_state()[0] != "approved":
|
||||
if col_applications.find_one( {"user": holo_user.id} ) is None:
|
||||
|
||||
await msg.reply_text(locale("not_member", "message", locale=msg.from_user))
|
||||
return
|
||||
|
||||
if holo_user.application_state()[0] != "fill" and holo_user.sponsorship_state()[0] != "fill":
|
||||
|
||||
if col_spoilers.find_one( {"user": msg.from_user.id, "completed": False} ) is None:
|
||||
if col_spoilers.find_one( {"user": holo_user.id, "completed": False} ) is None:
|
||||
|
||||
col_spoilers.insert_one(
|
||||
{
|
||||
"user": msg.from_user.id,
|
||||
"user": holo_user.id,
|
||||
"completed": False,
|
||||
"category": None,
|
||||
"description": None,
|
||||
|
Reference in New Issue
Block a user