From 384d39120d21755ff04d2d276f4ff82286570d56 Mon Sep 17 00:00:00 2001 From: wangchuxiao Date: Wed, 25 May 2022 18:05:24 +0800 Subject: [PATCH] script --- test/mongo/mongo_utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/mongo/mongo_utils.go b/test/mongo/mongo_utils.go index aac63e548..f736f0d54 100644 --- a/test/mongo/mongo_utils.go +++ b/test/mongo/mongo_utils.go @@ -21,7 +21,7 @@ func GetUserAllChat(uid string) { ctx, _ := context.WithTimeout(context.Background(), time.Duration(config.Config.Mongo.DBTimeout)*time.Second) collection := Client.Database(config.Config.Mongo.DBDatabase).Collection("msg") var userChatList []db.UserChat - result, err := collection.Find(context.Background(), bson.M{"uid": primitive.Regex{Pattern: uid}}) + result, err := collection.Find(context.Background(), bson.M{"uid": bson.M{"$regex": uid}}) if err != nil { fmt.Println("find error", err.Error()) return