fix:昵称审核,修改头像覆盖昵称问题修复3
This commit is contained in:
parent
8f9af23b90
commit
44969d364a
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue