1
0
mirror of https://github.com/GeyserMC/Geyser.git synced 2025-12-22 16:29:25 +00:00

Fix form images (#771)

This commit is contained in:
rtm516
2020-06-14 01:01:58 +01:00
committed by GitHub
parent 7fcd8f2daf
commit 0d6c3309e2

View File

@@ -32,14 +32,14 @@ public class FormImage {
@Getter
@Setter
private FormImageType type;
private String type;
@Getter
@Setter
private String data;
public FormImage(FormImageType type, String data) {
this.type = type;
this.type = type.getName();
this.data = data;
}