From b1d46e22916b58dfdb976290f0083b3289dd7be0 Mon Sep 17 00:00:00 2001 From: Nathan Freitas Date: Thu, 2 Apr 2015 23:37:43 -0400 Subject: [PATCH] use getbridge email instead of web, as it makes more sense for users in censored/filtered locations to send an email than to access *.torproject.org through their browser. Also, even if they can connect, the browser UI is not great. --- src/org/torproject/android/OrbotMainActivity.java | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/org/torproject/android/OrbotMainActivity.java b/src/org/torproject/android/OrbotMainActivity.java index 62e666ee..088f7fb1 100644 --- a/src/org/torproject/android/OrbotMainActivity.java +++ b/src/org/torproject/android/OrbotMainActivity.java @@ -866,8 +866,9 @@ public class OrbotMainActivity extends Activity implements OrbotConstants, OnLon @Override public void onClick(DialogInterface dialog, int which) { - openBrowser(URL_TOR_BRIDGES); + //openBrowser(URL_TOR_BRIDGES); + sendGetBridgeEmail(); } @@ -902,6 +903,16 @@ public class OrbotMainActivity extends Activity implements OrbotConstants, OnLon } + private void sendGetBridgeEmail () + { + Intent intent = new Intent(Intent.ACTION_SEND); + intent.setType("message/rfc822"); + intent.putExtra(Intent.EXTRA_EMAIL , new String[]{"bridges@torproject.org"}); + intent.putExtra(Intent.EXTRA_SUBJECT, "Tor Bridge Request"); + + startActivity(Intent.createChooser(intent, "Send Email")); + } + private void enableBridges (boolean enable) {