mirror of
https://github.com/GeyserMC/Geyser.git
synced 2025-12-22 08:19:20 +00:00
Fix form images (#771)
This commit is contained in:
@@ -32,14 +32,14 @@ public class FormImage {
|
|||||||
|
|
||||||
@Getter
|
@Getter
|
||||||
@Setter
|
@Setter
|
||||||
private FormImageType type;
|
private String type;
|
||||||
|
|
||||||
@Getter
|
@Getter
|
||||||
@Setter
|
@Setter
|
||||||
private String data;
|
private String data;
|
||||||
|
|
||||||
public FormImage(FormImageType type, String data) {
|
public FormImage(FormImageType type, String data) {
|
||||||
this.type = type;
|
this.type = type.getName();
|
||||||
this.data = data;
|
this.data = data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user