geforkt von Mirrors/HeadDB
Merge branch 'master' into dev
Dieser Commit ist enthalten in:
Commit
d3def0d2cf
@ -142,9 +142,11 @@ public class HeadDatabase {
|
|||||||
JSONArray array = (JSONArray) parser.parse(response.toString());
|
JSONArray array = (JSONArray) parser.parse(response.toString());
|
||||||
for (Object o : array) {
|
for (Object o : array) {
|
||||||
JSONObject obj = (JSONObject) o;
|
JSONObject obj = (JSONObject) o;
|
||||||
|
String uuid = obj.get("uuid").toString();
|
||||||
|
|
||||||
Head head = new Head(id)
|
Head head = new Head(id)
|
||||||
.withName(obj.get("name").toString())
|
.withName(obj.get("name").toString())
|
||||||
.withUUID(UUID.fromString(obj.get("uuid").toString()))
|
.withUUID(uuid.isEmpty() ? UUID.randomUUID() : UUID.fromString(uuid))
|
||||||
.withValue(obj.get("value").toString())
|
.withValue(obj.get("value").toString())
|
||||||
.withTags(obj.get("tags") != null ? obj.get("tags").toString() : "None")
|
.withTags(obj.get("tags") != null ? obj.get("tags").toString() : "None")
|
||||||
.withCategory(category);
|
.withCategory(category);
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren