Change uuid field to String type due to new format UUIDs that fail to parse on GFE 3.16

This commit is contained in:
Cameron Gutman
2018-12-27 23:46:40 -08:00
parent a7023f52aa
commit 6f35b991b7
2 changed files with 2 additions and 3 deletions
@@ -255,7 +255,7 @@ public class NvHTTP {
details.name = "UNKNOWN";
}
details.uuid = UUID.fromString(getXmlString(serverInfo, "uniqueid"));
details.uuid = getXmlString(serverInfo, "uniqueid");
details.macAddress = getXmlString(serverInfo, "mac");
details.localAddress = getXmlString(serverInfo, "LocalIP");