Prevent crash

This commit is contained in:
M66B
2022-02-18 15:16:09 +01:00
parent b95225fc2e
commit b3f7741d43

View File

@@ -219,7 +219,7 @@ public class FragmentBase extends Fragment {
if (savedInstanceState == null) {
Bundle args = getArguments();
if (args == null)
if (args == null && !isStateSaved())
setArguments(new Bundle());
} else {
title = savedInstanceState.getCharSequence("fair:title");