Skip to content

Commit

Permalink
don't use null fileName
Browse files Browse the repository at this point in the history
  • Loading branch information
InventivetalentDev committed Sep 23, 2024
1 parent ce5d3c8 commit 02ed22d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/org/mineskin/MineSkinClientImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public CompletableFuture<GenerateResponse> generateUrl(String url, GenerateOptio
* Generates skin data by uploading an image (with default options)
*/
public CompletableFuture<GenerateResponse> generateUpload(InputStream is) {
return generateUpload(is, GenerateOptions.create(), null);
return generateUpload(is, GenerateOptions.create(), "skin.png");
}

/**
Expand Down

0 comments on commit 02ed22d

Please sign in to comment.