mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-05 20:11:14 +08:00
fix: improve time condition check mehtod. (#2804)
* fix: improve time condition check mehtod. * fix
This commit is contained in:
parent
4de3befd60
commit
53cf2c0540
@ -1219,7 +1219,7 @@ func (g *groupServer) TransferGroupOwner(ctx context.Context, req *pbgroup.Trans
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if newOwner.MuteEndTime != time.Unix(0, 0) {
|
if newOwner.MuteEndTime.After(time.Now()) {
|
||||||
if _, err := g.CancelMuteGroupMember(ctx, &pbgroup.CancelMuteGroupMemberReq{
|
if _, err := g.CancelMuteGroupMember(ctx, &pbgroup.CancelMuteGroupMemberReq{
|
||||||
GroupID: group.GroupID,
|
GroupID: group.GroupID,
|
||||||
UserID: req.NewOwnerUserID}); err != nil {
|
UserID: req.NewOwnerUserID}); err != nil {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user