Fix: Correctly retrieve user ID value in ListUsersResponse
This commit is contained in:
+1
-1
@@ -16,7 +16,7 @@ public class ListUsersResponse extends SuccessResponse {
|
||||
users_block -> {
|
||||
for (User user : users) {
|
||||
users_block.param("USERNAME", user.getName());
|
||||
users_block.param("ID", user.getId());
|
||||
users_block.param("ID", user.getId().value());
|
||||
}
|
||||
})
|
||||
.build());
|
||||
|
||||
Reference in New Issue
Block a user