msg update

This commit is contained in:
Gordon 2023-03-20 12:36:41 +08:00
parent 0aaa8cb36b
commit 7e2db9cd43

View File

@ -275,7 +275,7 @@ func (m *msgServer) GetMaxAndMinSeq(ctx context.Context, req *sdkws.GetMaxAndMin
for _, groupID := range req.GroupIDs { for _, groupID := range req.GroupIDs {
maxSeq, err := m.MsgDatabase.GetGroupMaxSeq(ctx, groupID) maxSeq, err := m.MsgDatabase.GetGroupMaxSeq(ctx, groupID)
if err != nil && err != redis.Nil { if err != nil && err != redis.Nil {
log.ZDebug(ctx, "redis err", err.Error()) log.ZDebug(ctx, "redis err", "err", err.Error())
return nil, err return nil, err
} }
minSeq, err := m.MsgDatabase.GetGroupMinSeq(ctx, groupID) minSeq, err := m.MsgDatabase.GetGroupMinSeq(ctx, groupID)