Fixed type issue withe language id
This commit is contained in:
parent
297833b515
commit
a09b14bab0
@ -2,14 +2,14 @@ package net.schueller.peertube.model;
|
|||||||
|
|
||||||
public class Language {
|
public class Language {
|
||||||
|
|
||||||
private Integer id;
|
private String id;
|
||||||
private String label;
|
private String label;
|
||||||
|
|
||||||
public Integer getId() {
|
public String getId() {
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setId(Integer id) {
|
public void setId(String id) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user