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:
parent
9d83a5bb44
commit
b1d46e2291
|
@ -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)
|
||||
{
|
||||
|
||||
|
|
Loading…
Reference in New Issue