Skip to content

Commit

Permalink
Change make file name lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
zbx1425 committed Jan 25, 2025
1 parent b46412a commit f8d9174
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public static void handle(MinecraftServer server, ServerPlayer initiator, Friend

long timestamp = buffer.readLong();
String baseFileName = Instant.ofEpochMilli(timestamp).atOffset(ZoneOffset.UTC).format(FILE_DATE_FORMAT)
+ "-" + String.format("%016X", jobId) + "-" + initiator.getGameProfile().getName();
+ "-" + String.format("%016x", jobId) + "-" + initiator.getGameProfile().getName();

byte[] imageData = new byte[length];
buffer.readBytes(imageData);
Expand Down

0 comments on commit f8d9174

Please sign in to comment.