Fix box art URL

This commit is contained in:
Cameron Gutman 2014-10-22 21:24:11 -04:00
parent 7f587dc389
commit 77a587abe8

View File

@ -218,7 +218,7 @@ public class NvHTTP {
public InputStream getBoxArtPng(NvApp app) throws IOException { public InputStream getBoxArtPng(NvApp app) throws IOException {
// FIXME: Investigate whether this should be subject to the 2 second read timeout // FIXME: Investigate whether this should be subject to the 2 second read timeout
// or not. // or not.
return openHttpConnection(baseUrl + "/applist?uniqueid="+uniqueId+"&appid="+ return openHttpConnection(baseUrl + "/appasset?uniqueid="+uniqueId+"&appid="+
app.getAppId()+"&AssetType=2&AssetIdx=0", false); app.getAppId()+"&AssetType=2&AssetIdx=0", false);
} }