From 4ee99a78b2ee5f5bc35b56cd5787b2facb355ce8 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Tue, 6 May 2014 10:21:17 -0400 Subject: [PATCH] GFE 2.0.1 appears to have a bug where it drops all paired devices when the serverinfo query is sent with a uniqueid argument. Stop doing that to fix Limelight with GFE 2.0.1. --- moonlight-common/src/com/limelight/nvstream/http/NvHTTP.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }