diff --git a/func.py b/func.py index d95183f..bf822b3 100644 --- a/func.py +++ b/func.py @@ -28,8 +28,13 @@ def chat_content_exec(update, context): chat_type = update.effective_chat.type user_id = update.effective_user.id chat_id = update.effective_message.chat_id + # 限制为群组 if chat_type != "supergroup": return + # 限制文字长度不能超过50字 + if len(text) > 50: + return + # 取消注释开启独享模式(仅授权群组可用) # if chat_id not in ["1231242141"]: # return try: