Project

General

Profile

Bug #730

Updated by Soren Stoutner almost 3 years ago

This happens if either Tor or I2P proxying is enabled and the indicated app is not installed. 

 This is caused by line 4308, 4318, or 4345 in MainWebViewActivity: 

 https://gitweb.stoutner.com/?p=PrivacyBrowser.git;a=blob;f=app/src/main/java/com/stoutner/privacybrowser/activities/MainWebViewActivity.java;h=52d5f69998a21541177f67a634083bbd7795f0ec;hb=5c9367467e671483924626fa69eb8a4e61d24352 

     i2pNotInstalledDialogFragment.show(getSupportFragmentManager(), getString(R.string.proxy_not_installed_dialog)); 

 Which causes a `Can not perform this action after onSaveInstanceState` error. 

 It looks like it is just attempting to display the dialog start too quickly. 

 https://stackoverflow.com/questions/15729138/on-showing-dialog-i-get-can-not-perform-this-action-after-onsaveinstancestate

Back