Skip to content

Commit

Permalink
PIA-1290: Fix illegal state exception on signup flow (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
kp-juan-docal authored Feb 8, 2024
1 parent 7d2c49a commit 65c524a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ public void switchToPurchasingProcess(final boolean fireOffPurchasing, final boo
frag.setFireOffPurchasing(fireOffPurchasing);
frag.setTrial(isTrial);
frag.setLoginWithReceipt(isLoginWithReceipt);
getSupportFragmentManager().beginTransaction().replace(R.id.container, frag).commit();
getSupportFragmentManager().beginTransaction().replace(R.id.container, frag).commitAllowingStateLoss();
});
}

Expand Down

0 comments on commit 65c524a

Please sign in to comment.