1
0
mirror of https://github.com/lucko/LuckPerms.git synced 2025-08-22 22:22:56 +02:00

Don't pretty-print '/lp export' json (#3489)

This commit is contained in:
maxcom1
2022-09-30 21:32:37 +02:00
committed by GitHub
parent 44470c8843
commit 8bbb6994b6

View File

@@ -258,7 +258,7 @@ public abstract class Exporter implements Runnable {
ByteArrayOutputStream bytesOut = new ByteArrayOutputStream();
try (Writer writer = new OutputStreamWriter(new GZIPOutputStream(bytesOut), StandardCharsets.UTF_8)) {
GsonProvider.prettyPrinting().toJson(json, writer);
GsonProvider.normal().toJson(json, writer);
} catch (IOException e) {
this.plugin.getLogger().severe("Error compressing data", e);
}