Fix loading schematic from URLs

Dieser Commit ist enthalten in:
dordsor21 2020-05-09 16:45:42 +01:00
Ursprung 56175ffe0f
Commit cb20cef0e6

Datei anzeigen

@ -212,6 +212,7 @@ public class SchematicCommands {
}
UUID uuid = UUID.fromString(filename.substring(4));
URL webUrl = new URL(Settings.IMP.WEB.URL);
format = ClipboardFormats.findByAlias(formatName);
URL url = new URL(webUrl, "uploads/" + uuid + "." + format.getPrimaryFileExtension());
ReadableByteChannel byteChannel = Channels.newChannel(url.openStream());
in = Channels.newInputStream(byteChannel);