fix: 转发消息同时留言时ai会回复两条的情况

This commit is contained in:
kuaifan
2025-07-15 19:03:46 +08:00
parent fc34ff38d3
commit e98fe3eec5
3 changed files with 56 additions and 30 deletions

View File

@@ -408,6 +408,10 @@ class BotReceiveMsgTask extends AbstractTask
$errorContent = null;
if ($botUser->isAiBot($type)) {
// AI机器人
if (Base::val($msg->msg, 'forward_data.leave')) {
// AI机器人不处理带有留言的转发消息因为他要处理那条留言消息
return;
}
$setting = Base::setting('aibotSetting');
$extras = [
'model_type' => match ($type) {