ada现在支持接收贴表情消息

This commit is contained in:
Windpicker-owo
2025-09-08 01:58:43 +08:00
parent 14cfc867ab
commit f297eed9bb
8 changed files with 315 additions and 46 deletions

View File

@@ -126,7 +126,7 @@ class PlusCommand(ABC):
return True
# 检查是否为群聊消息
is_group = hasattr(self.message, "is_group_message") and self.message.is_group_message
is_group = hasattr(self.message.message_info, "group_info") and self.message.message_info.group_info
if self.chat_type_allow == ChatType.GROUP and is_group:
return True