mirror of https://github.com/M66B/FairEmail.git
Prevent crash
This commit is contained in:
parent
b8ba59160f
commit
a7b55d5570
|
@ -225,11 +225,11 @@ public class FragmentBase extends Fragment {
|
|||
Log.i("Create " + this + " saved=" + (savedInstanceState != null));
|
||||
super.onCreate(savedInstanceState);
|
||||
|
||||
if (savedInstanceState == null) {
|
||||
Bundle args = getArguments();
|
||||
if (args == null)
|
||||
setArguments(new Bundle());
|
||||
|
||||
if (savedInstanceState != null) {
|
||||
} else {
|
||||
subtitle = savedInstanceState.getString("fair:subtitle");
|
||||
requestKey = savedInstanceState.getString("fair:requestKey");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue