Skip to content

Commit

Permalink
fix(bluemap/auth): menu playerhead not visible on subpath installations
Browse files Browse the repository at this point in the history
  • Loading branch information
Chicken committed Sep 7, 2024
1 parent 6d0930d commit 41d5a65
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public void onEnable() {
request.respond(404);
return;
}
request.redirect(301, "../../../../" + BMSkin.getPlayerHeadIconAddress(api, UUID.fromString(uuid), map.get()));
request.redirect(301, "../../../" + BMSkin.getPlayerHeadIconAddress(api, UUID.fromString(uuid), map.get()));
});

this.http.start();
Expand Down

0 comments on commit 41d5a65

Please sign in to comment.