diff --git a/moonlight-common/src/com/limelight/nvstream/http/NvHTTP.java b/moonlight-common/src/com/limelight/nvstream/http/NvHTTP.java index 9434d650..183b8a79 100644 --- a/moonlight-common/src/com/limelight/nvstream/http/NvHTTP.java +++ b/moonlight-common/src/com/limelight/nvstream/http/NvHTTP.java @@ -107,7 +107,7 @@ public class NvHTTP { } public int getCurrentGame() throws IOException, XmlPullParserException { - InputStream in = openHttpConnection(baseUrl + "/serverinfo?uniqueid=" + uniqueId); + InputStream in = openHttpConnection(baseUrl + "/serverinfo"); String game = getXmlString(in, "currentgame"); return Integer.parseInt(game); }