Compare commits
No commits in common. "f771238b5eb65d6549fbd872e8c1e208fb2accd6" and "ac76712485e76fed8a5632a95753c7ba959f823d" have entirely different histories.
f771238b5e
...
ac76712485
|
@ -1539,7 +1539,7 @@ func (svc *PlayerDataSvc) GetPlayerInviteSnid(req *model.PlayerIsExistBySnIdArgs
|
|||
res := &t{}
|
||||
|
||||
err := c.Find(bson.M{"snid": req.SnId}).Select(bson.M{"psnid": 1}).One(res)
|
||||
if err != nil && !errors.Is(err, mgo.ErrNotFound) {
|
||||
if err != nil && errors.Is(err, mgo.ErrNotFound) {
|
||||
return err
|
||||
}
|
||||
|
||||
|
|
2
public
2
public
|
@ -1 +1 @@
|
|||
Subproject commit b3c639ba6fbdb6ee41e21a8b96901a179db031af
|
||||
Subproject commit 45e11d554d0d1093e3335774bf1d5e027f15d234
|
Loading…
Reference in New Issue