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.
This commit is contained in:
Nathan Freitas 2015-04-02 23:37:43 -04:00
parent 9d83a5bb44
commit b1d46e2291
1 changed files with 12 additions and 1 deletions

View File

@ -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)
{