onResume() must finish before we call some APIs
This commit is contained in:
parent
406d83cb50
commit
611558218d
|
@ -902,9 +902,18 @@ public class Orbot extends ActionBarActivity implements TorConstants, OnLongClic
|
|||
protected void onResume() {
|
||||
super.onResume();
|
||||
|
||||
setLocale();
|
||||
mHandler.postDelayed(new Runnable ()
|
||||
{
|
||||
public void run ()
|
||||
{
|
||||
|
||||
handleIntents();
|
||||
setLocale();
|
||||
|
||||
handleIntents();
|
||||
|
||||
}
|
||||
}
|
||||
, 500);
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue