update Orbot about dialog display to show tor version

This commit is contained in:
Nathan Freitas 2014-09-14 16:19:04 -04:00
parent 93614ddd61
commit a64e6b164f
1 changed files with 1 additions and 1 deletions

View File

@ -336,7 +336,7 @@ public class Orbot extends ActionBarActivity implements TorConstants, OnLongClic
String version = ""; String version = "";
try { try {
version = getPackageManager().getPackageInfo(getPackageName(), 0).versionName; version = getPackageManager().getPackageInfo(getPackageName(), 0).versionName + " (Tor " + TorServiceConstants.BINARY_TOR_VERSION + ")";
} catch (NameNotFoundException e) { } catch (NameNotFoundException e) {
version = "Version Not Found"; version = "Version Not Found";
} }