From 0ae71e15fc03583c23710205470974e69126812b Mon Sep 17 00:00:00 2001 From: Kenny Root Date: Tue, 9 Jun 2015 18:56:58 -0700 Subject: Use explicit Intent when launching from Host List If there are multiple apps that can handle the "ssh" protocol, it will bring up an activity disambiguation dialog if we don't specify the component explicitly. Fixes #84. --- src/org/connectbot/HostListActivity.java | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/org/connectbot/HostListActivity.java b/src/org/connectbot/HostListActivity.java index 265dd08..8b3b434 100644 --- a/src/org/connectbot/HostListActivity.java +++ b/src/org/connectbot/HostListActivity.java @@ -229,6 +229,7 @@ public class HostListActivity extends ListActivity { } else { // otherwise just launch activity to show this host + contents.setClass(HostListActivity.this, ConsoleActivity.class); HostListActivity.this.startActivity(contents); } } -- cgit v1.2.3