From 4a921cd97eb48639e7b9b8d11b8dbd2ecd5154c9 Mon Sep 17 00:00:00 2001 From: Josh Roy <10731363+JRoy@users.noreply.github.com> Date: Sat, 30 Aug 2025 19:44:22 -0400 Subject: [PATCH] Update dump url new site doesn't require .html extension, we can avoid the redirect. --- .../com/earth2me/essentials/commands/Commandessentials.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Essentials/src/main/java/com/earth2me/essentials/commands/Commandessentials.java b/Essentials/src/main/java/com/earth2me/essentials/commands/Commandessentials.java index fa97ff2ff9f..1eeb6d20b27 100644 --- a/Essentials/src/main/java/com/earth2me/essentials/commands/Commandessentials.java +++ b/Essentials/src/main/java/com/earth2me/essentials/commands/Commandessentials.java @@ -461,7 +461,7 @@ private void runDump(Server server, CommandSource sender, String commandLabel, S final CompletableFuture future = PasteUtil.createPaste(files); future.thenAccept(result -> { if (result != null) { - final String dumpUrl = "https://essentialsx.net/dump.html?bytebin=" + result.getPasteId(); + final String dumpUrl = "https://essentialsx.net/dump?bytebin=" + result.getPasteId(); sender.sendTl("dumpUrl", dumpUrl); // pastes.dev doesn't support deletion keys //sender.sendTl("dumpDeleteKey", result.getDeletionKey());