Skip to content

Commit b1601b3

Browse files
committed
fix: add missing parameter to server group query
1 parent 4181190 commit b1601b3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

api/src/main/java/app/simplecloud/api/internal/group/GroupApiImpl.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,8 @@ public CompletableFuture<List<Group>> getAllGroups(@org.jetbrains.annotations.Nu
9898
private ModelsListServerGroupsResponse executeQuery(@org.jetbrains.annotations.Nullable GroupQuery query) throws ApiException {
9999
return serverGroupsApi.v0ServerGroupsGet(
100100
this.options.getNetworkId(),
101-
this.options.getNetworkSecret()
101+
this.options.getNetworkSecret(),
102+
null
102103
);
103104
}
104105

0 commit comments

Comments
 (0)