瀏覽代碼

update

master
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…
取消
儲存