fix:昵称审核,修改头像覆盖昵称问题修复3

This commit is contained in:
wangxinyu 2024-12-17 16:30:43 +08:00
parent 8f9af23b90
commit 44969d364a
1 changed files with 1 additions and 1 deletions

View File

@ -369,7 +369,7 @@ func (s *Service) ApiUpdateAccount(ctx *gin.Context, req *accountproto.ApiUpdate
}
// 主播昵称需要先过审核
if oldAccount.GetRole() == consts.Streamer && req.Account.GetNewName() != "" && (oldAccount.GetName() != req.Account.GetName() || oldAccount.GetNewName() != req.Account.GetNewName()) {
if oldAccount.GetRole() == consts.Streamer && req.Account.GetName() != "" && (oldAccount.GetName() != req.Account.GetName() || oldAccount.GetNewName() != req.Account.GetNewName()) {
opUpdateReq.NewName = goproto.String(req.Account.GetName())
auditStatus := s.SetAuditStatusBitMap(oldAccount.GetAuditStatus(), consts.StreamNikeAudit, consts.StreamerNikeNameAuditing)
opUpdateReq.AuditStatus = goproto.Int64(auditStatus)