DengBiao пре 1 година
родитељ
комит
81e38544a5
1 измењених фајлова са 7 додато и 2 уклоњено
  1. +7
    -2
      internal/logic/domain/friend/friend_service.go

+ 7
- 2
internal/logic/domain/friend/friend_service.go Прегледај датотеку

@@ -119,8 +119,13 @@ func (*friendService) AddFriend(ctx context.Context, userId, friendId int64, rem
"is_auto_add_friends": isAutoAddFriends,
"user": resp.User,
}))
if respFriend.User.IsAutoAddedFriends == 1 {
return FriendService.AgreeAddFriend(ctx, friendId, userId, "系统自动添加")

if description == "社交人脉圈添加好友" {
return FriendService.AgreeAddFriend(ctx, friendId, userId, description)
} else {
if respFriend.User.IsAutoAddedFriends == 1 {
return FriendService.AgreeAddFriend(ctx, friendId, userId, "系统自动添加")
}
}
}
return nil


Loading…
Откажи
Сачувај