Bläddra i källkod

update agree friend

master
DengBiao 1 år sedan
förälder
incheckning
0e0d2370e4
2 ändrade filer med 3 tillägg och 6 borttagningar
  1. +1
    -4
      internal/logic/domain/friend/friend_service.go
  2. +2
    -2
      test/tcp_conn/main.go

+ 1
- 4
internal/logic/domain/friend/friend_service.go Visa fil

@@ -131,13 +131,10 @@ func (*friendService) AgreeAddFriend(ctx context.Context, userId, friendId int64
return err
}

newFriend, err := FriendRepo.Get(friendId, userId)
newFriend, err := FriendRepo.Get(userId, friendId)
if newFriend != nil && newFriend.Status != FriendStatusAgree {
newFriend.Status = FriendStatusAgree
err = FriendRepo.Save(newFriend)
if err != nil {
return err
}
} else {
now := time.Now()
err = FriendRepo.Save(&Friend{


+ 2
- 2
test/tcp_conn/main.go Visa fil

@@ -67,7 +67,7 @@ func (c *TcpClient) Output(pt pb.PackageType, requestId int64, message proto.Mes
func (c *TcpClient) Start() {

//connect, err := net.Dial("tcp", "111.229.238.28:8080")
connect, err := net.Dial("tcp", "im-tcp-connect.zhiyingos.com:8001")
connect, err := net.Dial("tcp", "im-tcp-connect.izhyin.com:8001")
if err != nil {
log.Println(err)
return
@@ -87,7 +87,7 @@ func (c *TcpClient) SignIn() {
signIn := pb.SignInInput{
UserId: c.UserId,
DeviceId: c.DeviceId,
Token: "HBMHCHQOVQDTPUVSBBCDEWGGOVPKFRAAZGQXKJNA",
Token: "ZDNMWLHJYMDYHKBWESEVHQWXFPCLAGMIUWFOHWNI",
}
c.Output(pb.PackageType_PT_SIGN_IN, time.Now().UnixNano(), &signIn)
}


Laddar…
Avbryt
Spara