# HG changeset patch # User Carl Byington # Date 1404360388 25200 # Node ID 621732df242e10127a72bfa807684bf3408a31da # Parent 6cc9a9e622bc668e150fb8456f559da991d49189 read deployment.connections on startup for global preferences also diff -r 6cc9a9e622bc -r 621732df242e src/com/five_ten_sg/connectbot/HostListActivity.java --- a/src/com/five_ten_sg/connectbot/HostListActivity.java Wed Jul 02 21:03:44 2014 -0700 +++ b/src/com/five_ten_sg/connectbot/HostListActivity.java Wed Jul 02 21:06:28 2014 -0700 @@ -458,7 +458,8 @@ types.put("debug_keycodes", "boolean"); for (String key : values.keySet()) { if (types.containsKey(key)) { - char stype = types.get(key).charAt(0); + //char stype = types.get(key).charAt(0); + char stype = 's'; switch (stype) { case 'b': boolean bx = prefs.getBoolean(key, true);