Skip to content

Commit

Permalink
Remove dashes from UUID (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
tadhgboyle authored Jan 28, 2023
1 parent 646cfdf commit 2b15476
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/namelessmc/java_api/NamelessAPI.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public void sendMinecraftGroups(final int serverId, final Map<UUID, Set<String>>
groups.forEach((uuid, playerGroups) -> {
final JsonObject playerGroupsObject = new JsonObject();
playerGroupsObject.add("groups", gson.toJsonTree(playerGroups));
groupsJson.add(uuid.toString(), playerGroupsObject);
groupsJson.add(javaUuidToWebsiteUuid(uuid), playerGroupsObject);
});

JsonObject body = new JsonObject();
Expand Down

0 comments on commit 2b15476

Please sign in to comment.