@@ -96,9 +96,10 @@ func handleDouShenUserRegisterConsumeForMyFans(msgData []byte) error { | |||||
groupName := "我的粉丝【1】群" | groupName := "我的粉丝【1】群" | ||||
//3、创建群 | //3、创建群 | ||||
resp, err := utils.GetLogicExtClient(cfg.ImLogicRpc.URL, cfg.ImLogicRpc.PORT).CreateGroup(utils.GetCtx("", utils2.Int64ToStr(gimUser.Id), "", msg.MasterId), &pb.CreateGroupReq{ | resp, err := utils.GetLogicExtClient(cfg.ImLogicRpc.URL, cfg.ImLogicRpc.PORT).CreateGroup(utils.GetCtx("", utils2.Int64ToStr(gimUser.Id), "", msg.MasterId), &pb.CreateGroupReq{ | ||||
Name: groupName, | |||||
AvatarUrl: "", | |||||
Introduction: gimUser.Nickname + "的粉丝群", | |||||
Name: groupName, | |||||
AvatarUrl: "", | |||||
//Introduction: gimUser.Nickname + "的粉丝群", | |||||
Introduction: "", | |||||
Extra: "", | Extra: "", | ||||
MemberIds: nil, | MemberIds: nil, | ||||
}) | }) | ||||
@@ -101,9 +101,10 @@ func handleDouShenUserRegisterConsumeForOfficial(msgData []byte) error { | |||||
groupName := "官方【1】群" | groupName := "官方【1】群" | ||||
//3、创建群 | //3、创建群 | ||||
resp, err := utils.GetLogicExtClient(cfg.ImLogicRpc.URL, cfg.ImLogicRpc.PORT).CreateGroup(utils.GetCtx("", strconv.FormatInt(gimUser.Id, 10), "0", msg.MasterId), &pb.CreateGroupReq{ | resp, err := utils.GetLogicExtClient(cfg.ImLogicRpc.URL, cfg.ImLogicRpc.PORT).CreateGroup(utils.GetCtx("", strconv.FormatInt(gimUser.Id, 10), "0", msg.MasterId), &pb.CreateGroupReq{ | ||||
Name: groupName, | |||||
AvatarUrl: "", | |||||
Introduction: "官方群", | |||||
Name: groupName, | |||||
AvatarUrl: "", | |||||
//Introduction: "官方群", | |||||
Introduction: "", | |||||
Extra: "", | Extra: "", | ||||
MemberIds: []int64{}, | MemberIds: []int64{}, | ||||
}) | }) | ||||