Fix reading of MVLiveModels from config

This commit is contained in:
0xb00bface 2022-02-20 12:45:41 +01:00
parent 7dd229b55c
commit 5a4ff41984
1 changed files with 4 additions and 1 deletions

View File

@ -250,8 +250,11 @@ public class MVLiveModel extends AbstractModel {
@Override
public void readSiteSpecificData(JsonReader reader) throws IOException {
if (reader.hasNext()) {
reader.nextName();
id = reader.nextString();
}
}
public void setId(String id) {
this.id = id;