增加表情包种类尝试

dev-from070-to080
UnCLAS-Prommer 2025-06-30 11:28:07 +08:00
parent 96fa750100
commit 7564361a63
1 changed files with 1 additions and 1 deletions

View File

@ -370,7 +370,7 @@ class MessageHandler:
if image_sub_type == 0:
"""这部分认为是图片"""
return Seg(type="image", data=image_base64)
elif image_sub_type == 1:
elif image_sub_type in [1, 2, 3, 7, None]:
"""这部分认为是表情包"""
return Seg(type="emoji", data=image_base64)
else: