Skip to content

Commit

Permalink
fix sdk error
Browse files Browse the repository at this point in the history
  • Loading branch information
heavyrain2012 committed Oct 23, 2019
1 parent f9c2cf8 commit 066e74b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/src/main/java/cn/wildfirechat/sdk/FriendAdmin.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public static IMResult<Void> getFriendStatusList(String userId, int status) thro
String path = APIPath.Friend_Get_List;
InputGetFriendList input = new InputGetFriendList();
input.setUserId(userId);
input.setStatus(0);
input.setStatus(status);
return AdminHttpUtils.httpJsonPost(path, input, Void.class);
}

Expand Down

0 comments on commit 066e74b

Please sign in to comment.