forked from rDrama/rDrama
1
0
Fork 0

make it so ppl u muted or blocked cant add u to chats

master
Aevann 2024-03-10 20:26:42 +02:00
parent 99274ee930
commit 0f13ea3b54
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ def speak(data, v):
if v.id == chat.owner_id and chat_adding_regex.fullmatch(text):
user = get_user(text[2:], graceful=True, attributes=[User.id])
if user:
if user and not user.has_muted(v) and not user.has_muted(v):
user_id = user.id
existing = g.db.query(ChatMembership.user_id).filter_by(user_id=user_id, chat_id=chat_id).one_or_none()
leave = g.db.query(ChatLeave.user_id).filter_by(user_id=user_id, chat_id=chat_id).one_or_none()