We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f788d0 commit 37a9ff1Copy full SHA for 37a9ff1
src/main/java/com/hackclub/hccore/tasks/IconTask.java
@@ -48,7 +48,7 @@ public void run() {
48
HttpResponse<Path> cdnResponse;
49
try {
50
cdnResponse = client.send(cdnRequest,
51
- HttpResponse.BodyHandlers.ofFile(Paths.get(plugin.getDataPath().toString(), "temp.png")));
+ HttpResponse.BodyHandlers.ofFile(Paths.get(plugin.getDataPath().toString(), "icon.png")));
52
} catch (IOException | InterruptedException | SecurityException e) {
53
plugin.getLogger().severe("Failed to get the current icon from the Hack Club CDN!");
54
plugin.getLogger().severe(e.getMessage());
0 commit comments