mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
fix bug: args error
This commit is contained in:
parent
549721ec8e
commit
9d6f46b7f9
@ -23,9 +23,6 @@ func (x *CreateGroupReq) Check() error {
|
||||
if x.GroupInfo == nil {
|
||||
return errs.ErrArgs.Wrap("groupInfo is empty")
|
||||
}
|
||||
if x.GroupInfo.OwnerUserID == "" {
|
||||
return errs.ErrArgs.Wrap("GroupInfo.ownerUserID")
|
||||
}
|
||||
if x.GroupInfo.GroupType > 2 || x.GroupInfo.GroupType < 0 {
|
||||
return errs.ErrArgs.Wrap("GroupType is invalid")
|
||||
}
|
||||
|
@ -133,9 +133,6 @@ func (x *MarkConversationAsReadReq) Check() error {
|
||||
if x.ConversationID == "" {
|
||||
return errs.ErrArgs.Wrap("conversationID is empty")
|
||||
}
|
||||
if x.Seqs == nil {
|
||||
return errs.ErrArgs.Wrap("seqs is empty")
|
||||
}
|
||||
if x.UserID == "" {
|
||||
return errs.ErrArgs.Wrap("userID is empty")
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user