Skip to content

Commit

Permalink
Fix form images (GeyserMC#771)
Browse files Browse the repository at this point in the history
  • Loading branch information
rtm516 authored Jun 14, 2020
1 parent 7fcd8f2 commit 0d6c330
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 0d6c330

Please sign in to comment.