feat: replace nil

This commit is contained in:
icey-yu 2024-06-24 15:47:17 +08:00
parent 21197cc679
commit d25eb4c53c

View File

@ -56,7 +56,7 @@ func (o *FriendApi) GetFriendList(c *gin.Context) {
}
func (o *FriendApi) GetDesignatedFriends(c *gin.Context) {
a2r.Call(relation.FriendClient.GetDesignatedFriends, o.Client, c)
a2r.Call(relation.FriendClient.GetDesignatedFriends, o.Client, c, a2r.NewNilReplaceOption(relation.FriendClient.GetDesignatedFriends))
}
func (o *FriendApi) SetFriendRemark(c *gin.Context) {