diff --git a/moonlight-common/src/com/limelight/nvstream/http/NvHTTP.java b/moonlight-common/src/com/limelight/nvstream/http/NvHTTP.java index 183b8a79..41a81d25 100644 --- a/moonlight-common/src/com/limelight/nvstream/http/NvHTTP.java +++ b/moonlight-common/src/com/limelight/nvstream/http/NvHTTP.java @@ -100,8 +100,7 @@ public class NvHTTP { } public int getSessionId() throws IOException, XmlPullParserException { - InputStream in = openHttpConnection(baseUrl + "/pair?uniqueid=" + uniqueId - + "&devicename=" + deviceName); + InputStream in = openHttpConnection(baseUrl + "/pair?uniqueid=" + uniqueId); String sessionId = getXmlString(in, "sessionid"); return Integer.parseInt(sessionId); }