refactor: 更新 getMyBLPic 和 getMySSPic 函数,修改 ReferOriginMsg 属性为 false,以优化消息回复逻辑

This commit is contained in:
lixiangwuxian 2025-05-14 00:15:22 +08:00
parent e0fbf664f9
commit de5af61acf
2 changed files with 2 additions and 2 deletions

View File

@ -221,7 +221,7 @@ func getMyBLPic(msg model.Message) (reply *model.Reply) {
return &model.Reply{ return &model.Reply{
ReplyMsg: imageMsg.ToCQString(), ReplyMsg: imageMsg.ToCQString(),
ReferOriginMsg: true, ReferOriginMsg: false,
FromMsg: msg, FromMsg: msg,
} }
} }

View File

@ -217,7 +217,7 @@ func getMySSPic(msg model.Message) (reply *model.Reply) {
return &model.Reply{ return &model.Reply{
ReplyMsg: imageMsg.ToCQString(), ReplyMsg: imageMsg.ToCQString(),
ReferOriginMsg: true, ReferOriginMsg: false,
FromMsg: msg, FromMsg: msg,
} }
} }