Merge pull request 'by Robin at 20241209' (#875) from feat-IRONFANS-212-Robin into test

Reviewed-on: https://git.wishpal.cn/wishpal_ironfan/service/pulls/875
This commit is contained in:
chenhao 2024-12-09 16:26:11 +08:00
commit 67c3dfc8af
1 changed files with 4 additions and 2 deletions

View File

@ -389,7 +389,9 @@ func (s *NotifBcstCenter) tryToReplaceRecentReceive(recentReceiveMap map[int64]*
recentReceiveMap[notifReceive.NType].Rt = notifReceive.Ct
}
} else {
recentReceiveMap[notifReceive.NType].Nid = notifReceive.Nid
recentReceiveMap[notifReceive.NType].Rt = notifReceive.Ct
recentReceiveMap[notifReceive.NType] = &dbstruct.NotifRecentReceive{
Nid: notifReceive.Nid,
Rt: notifReceive.Ct,
}
}
}