This commit is contained in:
2026-05-09 17:10:08 +08:00
3 changed files with 35 additions and 24 deletions
@@ -71,8 +71,10 @@ namespace MessageService.WebApi.Application.Message
if (command.QuoteMessageId.HasValue)
{
// 2. 处理引用逻辑(如果传了 QuoteMessageId
QuoteInfo? quote = null;
// 2. 处理引用逻辑(如果传了 QuoteMessageId
QuoteInfo? quote = null;
if (command.QuoteMessageId.HasValue)
{
var originMsg = await reposity.FindByIdAsync(command.QuoteMessageId.Value);
if (originMsg != null)
{