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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

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;
}