From 77a587abe855b29b5be2582d929b3b363aed2c01 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Wed, 22 Oct 2014 21:24:11 -0400 Subject: [PATCH] Fix box art URL --- 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 27f4facf..43194343 100644 --- a/moonlight-common/src/com/limelight/nvstream/http/NvHTTP.java +++ b/moonlight-common/src/com/limelight/nvstream/http/NvHTTP.java @@ -218,7 +218,7 @@ public class NvHTTP { public InputStream getBoxArtPng(NvApp app) throws IOException { // FIXME: Investigate whether this should be subject to the 2 second read timeout // or not. - return openHttpConnection(baseUrl + "/applist?uniqueid="+uniqueId+"&appid="+ + return openHttpConnection(baseUrl + "/appasset?uniqueid="+uniqueId+"&appid="+ app.getAppId()+"&AssetType=2&AssetIdx=0", false); }