Commit 07d7873a authored by Vance Turnewitsch's avatar Vance Turnewitsch

An info message is displayed isntead of an error message when the phone is not connected.

parent d74afe06
...@@ -45,7 +45,7 @@ public class EnsurePhoneConnectedCommand extends ChainableCommand { ...@@ -45,7 +45,7 @@ public class EnsurePhoneConnectedCommand extends ChainableCommand {
if (result) { if (result) {
executeNextCommand(node); executeNextCommand(node);
} else { } else {
ErrorReporter.reportError(MESSAGES.phoneNotConnected()); ErrorReporter.reportInfo(MESSAGES.phoneNotConnected());
executionFailedOrCanceled(); executionFailedOrCanceled();
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment