Use an NvApp in the StreamConfiguration so it can be directly used by NvConnection

This commit is contained in:
Cameron Gutman
2015-02-27 14:08:39 -05:00
parent fb8fc54bb1
commit fcfcce88dd
4 changed files with 40 additions and 31 deletions
@@ -321,7 +321,7 @@ public class NvHTTP {
public NvApp getAppByName(String appName) throws IOException, XmlPullParserException {
LinkedList<NvApp> appList = getAppList();
for (NvApp appFromList : appList) {
if (appFromList.getAppName().equals(appName)) {
if (appFromList.getAppName().equalsIgnoreCase(appName)) {
return appFromList;
}
}