Properly handle failed app start

This commit is contained in:
Cameron Gutman 2018-07-28 00:13:52 -07:00
parent f61540c099
commit 6995a27126

View File

@ -240,7 +240,10 @@ public class NvConnection {
context.connListener.stageStarting(appName); context.connListener.stageStarting(appName);
try { try {
startApp(); if (!startApp()) {
context.connListener.stageFailed(appName, 0);
return;
}
context.connListener.stageComplete(appName); context.connListener.stageComplete(appName);
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();