Compare commits

..

No commits in common. "f2601f6971e965c9cdac9ccfb855a811e2089387" and "ec69120a26d84506448a671cd12177c89f06612d" have entirely different histories.

4 changed files with 4 additions and 9 deletions

View File

@ -4,7 +4,6 @@ on:
push:
branches: ["master"]
paths-ignore:
- .gitignore
- README.md
- LICENSE
- docker-compose.yml

1
.gitignore vendored
View File

@ -19,7 +19,6 @@ cmake-build-*/
out/
build/
work/
target/
.idea_modules/
atlassian-ide-plugin.xml
com_crashlytics_export_strings.xml

View File

@ -207,9 +207,6 @@ public final class JavaMinecraftServer extends MinecraftServer {
private final ForgeMod[] modList;
}
/**
* A forge mod for a server.
*/
@AllArgsConstructor @Getter @ToString
private static class ForgeMod {
/**

View File

@ -204,11 +204,11 @@ public final class MojangService {
log.info("Requesting player with query: {}", query);
UUID uuid; // The player UUID to lookup
boolean isFullUuid = query.length() == 36; // Was a UUID provided?
if (query.length() == 32 || isFullUuid) { // Parse the query as a UUID
boolean fullLength = query.length() == 36; // Was a UUID provided?
if (query.length() == 32 || fullLength) { // Parse the query as a UUID
try {
uuid = isFullUuid ? UUID.fromString(query) : UUIDUtils.addDashes(query);
log.info("Parsed {}UUID: {} -> {}", isFullUuid ? "" : "trimmed ", query, uuid);
uuid = fullLength ? UUID.fromString(query) : UUIDUtils.addDashes(query);
log.info("Parsed {}UUID: {} -> {}", fullLength ? "" : "trimmed ", query, uuid);
} catch (IllegalArgumentException ex) {
throw new BadRequestException("Malformed UUID provided: %s".formatted(query));
}