aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenny Root <kenny@the-b.org>2010-12-18 00:55:56 -0600
committerKenny Root <kenny@the-b.org>2010-12-18 00:56:12 -0600
commite7165dc1986cfe833496efd6d084aa2c32cae424 (patch)
treeb7e5ea780c25acc2ebdd97dabddeb3dbd6003a81 /src
parent04745b6c3a8260de73f3b1fb7bca89b78c3e8281 (diff)
downloadconnectbot-e7165dc1986cfe833496efd6d084aa2c32cae424.tar.gz
connectbot-e7165dc1986cfe833496efd6d084aa2c32cae424.tar.bz2
connectbot-e7165dc1986cfe833496efd6d084aa2c32cae424.zip
Problems opening a connection is a fatal error
Diffstat (limited to 'src')
-rw-r--r--src/org/connectbot/ConsoleActivity.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/org/connectbot/ConsoleActivity.java b/src/org/connectbot/ConsoleActivity.java
index f0d930f..58eaed2 100644
--- a/src/org/connectbot/ConsoleActivity.java
+++ b/src/org/connectbot/ConsoleActivity.java
@@ -868,6 +868,8 @@ public class ConsoleActivity extends Activity {
requestedBridge = bound.openConnection(requested);
} catch(Exception e) {
Log.e(TAG, "Problem while trying to create new requested bridge from URI", e);
+ // TODO: We should display an error dialog here.
+ return;
}
requestedIndex = addNewTerminalView(requestedBridge);