mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-19 11:03:01 +00:00
Change uuid field to String type due to new format UUIDs that fail to parse on GFE 3.16
This commit is contained in:
parent
a7023f52aa
commit
6f35b991b7
@ -1,7 +1,6 @@
|
|||||||
package com.limelight.nvstream.http;
|
package com.limelight.nvstream.http;
|
||||||
|
|
||||||
import java.security.cert.X509Certificate;
|
import java.security.cert.X509Certificate;
|
||||||
import java.util.UUID;
|
|
||||||
|
|
||||||
|
|
||||||
public class ComputerDetails {
|
public class ComputerDetails {
|
||||||
@ -10,7 +9,7 @@ public class ComputerDetails {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Persistent attributes
|
// Persistent attributes
|
||||||
public UUID uuid;
|
public String uuid;
|
||||||
public String name;
|
public String name;
|
||||||
public String localAddress;
|
public String localAddress;
|
||||||
public String remoteAddress;
|
public String remoteAddress;
|
||||||
|
@ -255,7 +255,7 @@ public class NvHTTP {
|
|||||||
details.name = "UNKNOWN";
|
details.name = "UNKNOWN";
|
||||||
}
|
}
|
||||||
|
|
||||||
details.uuid = UUID.fromString(getXmlString(serverInfo, "uniqueid"));
|
details.uuid = getXmlString(serverInfo, "uniqueid");
|
||||||
details.macAddress = getXmlString(serverInfo, "mac");
|
details.macAddress = getXmlString(serverInfo, "mac");
|
||||||
details.localAddress = getXmlString(serverInfo, "LocalIP");
|
details.localAddress = getXmlString(serverInfo, "LocalIP");
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user