Fixed type issue withe language id

This commit is contained in:
Stefan Schueller 2018-06-24 21:12:53 +02:00
parent 297833b515
commit a09b14bab0
1 changed files with 3 additions and 3 deletions

View File

@ -2,14 +2,14 @@ package net.schueller.peertube.model;
public class Language {
private Integer id;
private String id;
private String label;
public Integer getId() {
public String getId() {
return id;
}
public void setId(Integer id) {
public void setId(String id) {
this.id = id;
}