File tree Expand file tree Collapse file tree 3 files changed +7
-8
lines changed
Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ require (
1212 github.com/gorilla/websocket v1.5.1
1313 github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
1414 github.com/mitchellh/mapstructure v1.5.0
15- github.com/openimsdk/protocol v0.0.73-alpha.17
16- github.com/openimsdk/tools v0.0.50-alpha.105
15+ github.com/openimsdk/protocol v0.0.73-alpha.18
16+ github.com/openimsdk/tools v0.0.50-alpha.106
1717 github.com/pkg/errors v0.9.1 // indirect
1818 github.com/prometheus/client_golang v1.18.0
1919 github.com/stretchr/testify v1.10.0
Original file line number Diff line number Diff line change @@ -349,10 +349,10 @@ github.com/onsi/gomega v1.25.0 h1:Vw7br2PCDYijJHSfBOWhov+8cAnUf8MfMaIOV323l6Y=
349349github.com/onsi/gomega v1.25.0 /go.mod h1:r+zV744Re+DiYCIPRlYOTxn0YkOLcAnW8k1xXdMPGhM =
350350github.com/openimsdk/gomake v0.0.15-alpha.11 h1:PQudYDRESYeYlUYrrLLJhYIlUPO5x7FAx+o5El9U/Bw =
351351github.com/openimsdk/gomake v0.0.15-alpha.11 /go.mod h1:PndCozNc2IsQIciyn9mvEblYWZwJmAI+06z94EY+csI =
352- github.com/openimsdk/protocol v0.0.73-alpha.17 h1:ddo0QMns1GVwAmrPIPlAQ7uKmThAYLnOt+CIOgLsJyE =
353- github.com/openimsdk/protocol v0.0.73-alpha.17 /go.mod h1:WF7EuE55vQvpyUAzDXcqg+B+446xQyEba0X35lTINmw =
354- github.com/openimsdk/tools v0.0.50-alpha.105 h1:axuCvKXhxY2RGLhpMMFNgBtE0B65T2Sr1JDW3UD9nBs =
355- github.com/openimsdk/tools v0.0.50-alpha.105 /go.mod h1:x9i/e+WJFW4tocy6RNJQ9NofQiP3KJ1Y576/06TqOG4 =
352+ github.com/openimsdk/protocol v0.0.73-alpha.18 h1:LXmDFx3KnMd2mN0/S3Q2U33Ft/DHvplSsINO0/bto/c =
353+ github.com/openimsdk/protocol v0.0.73-alpha.18 /go.mod h1:WF7EuE55vQvpyUAzDXcqg+B+446xQyEba0X35lTINmw =
354+ github.com/openimsdk/tools v0.0.50-alpha.106 h1:gaqU08IbRxOdL16ZEQNyYLhCTf7K1HNkrik8KZLA+BM =
355+ github.com/openimsdk/tools v0.0.50-alpha.106 /go.mod h1:x9i/e+WJFW4tocy6RNJQ9NofQiP3KJ1Y576/06TqOG4 =
356356github.com/pelletier/go-toml/v2 v2.2.2 h1:aYUidT7k73Pcl9nb2gScu7NSrKCSHIDE89b3+6Wq+LM =
357357github.com/pelletier/go-toml/v2 v2.2.2 /go.mod h1:1t835xjRzz80PqgE6HHgN2JOsmgYu/h4qDAS4n929Rs =
358358github.com/pierrec/lz4/v4 v4.1.21 h1:yOVMLb6qSIDP67pl/5F7RepeKYu/VmTyEXvuMI5d9mQ =
Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ package group
1717import (
1818 "context"
1919 "fmt"
20- "math"
2120 "math/big"
2221 "math/rand"
2322 "strconv"
@@ -1040,7 +1039,7 @@ func (g *groupServer) deleteMemberAndSetConversationSeq(ctx context.Context, gro
10401039
10411040func (g * groupServer ) setMemberJoinSeq (ctx context.Context , groupID string , userIDs []string ) error {
10421041 conversationID := msgprocessor .GetConversationIDBySessionType (constant .ReadGroupChatType , groupID )
1043- return g .conversationClient .SetConversationMaxSeq (ctx , conversationID , userIDs , math . MaxInt64 )
1042+ return g .conversationClient .SetConversationMaxSeq (ctx , conversationID , userIDs , 0 )
10441043}
10451044
10461045func (g * groupServer ) SetGroupInfo (ctx context.Context , req * pbgroup.SetGroupInfoReq ) (* pbgroup.SetGroupInfoResp , error ) {
You can’t perform that action at this time.
0 commit comments