Răsfoiți Sursa

add reply_suffix

增加私聊和群聊回复后缀的可选配置
vision 2 ani în urmă
părinte
comite
dbe2f17e1a
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 2 2
      channel/chat_channel.py

+ 2 - 2
channel/chat_channel.py

@@ -223,9 +223,9 @@ class ChatChannel(Channel):
                         return self._decorate_reply(context, reply)
                     if context.get("isgroup", False):
                         reply_text = "@" + context["msg"].actual_user_nickname + "\n" + reply_text.strip()
-                        reply_text = conf().get("group_chat_reply_prefix", "") + reply_text
+                        reply_text = conf().get("group_chat_reply_prefix", "") + reply_text + conf().get("group_chat_reply_suffix", "")
                     else:
-                        reply_text = conf().get("single_chat_reply_prefix", "") + reply_text
+                        reply_text = conf().get("single_chat_reply_prefix", "") + reply_text + conf().get("single_chat_reply_suffix", "")
                     reply.content = reply_text
                 elif reply.type == ReplyType.ERROR or reply.type == ReplyType.INFO:
                     reply.content = "[" + str(reply.type) + "]\n" + reply.content