ソースを参照

Merge pull request #1221 from Zhaoyi-Yan/patch-3

add \n after @nickname for group chat
master
Jianglang GitHub 1年前
コミット
65b9542599
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      channel/chat_channel.py

+ 1
- 1
channel/chat_channel.py ファイルの表示

@@ -220,7 +220,7 @@ class ChatChannel(Channel):
reply = super().build_text_to_voice(reply.content)
return self._decorate_reply(context, reply)
if context.get("isgroup", False):
reply_text = "@" + context["msg"].actual_user_nickname + " " + reply_text.strip()
reply_text = "@" + context["msg"].actual_user_nickname + "\n" + reply_text.strip()
reply_text = conf().get("group_chat_reply_prefix", "") + reply_text
else:
reply_text = conf().get("single_chat_reply_prefix", "") + reply_text


読み込み中…
キャンセル
保存