Merge pull request #12709 from zfox23/RC66_commerce_fixCheckoutInfiniteLoad

RC66: Fix infinite loading when authing wallet during Checkout
This commit is contained in:
John Conklin II 2018-03-26 14:33:57 -07:00 committed by GitHub
commit 3e23ad4900
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1160,14 +1160,14 @@ Rectangle {
function authSuccessStep() {
if (!root.debugCheckoutSuccess) {
root.activeView = "checkoutMain";
} else {
root.activeView = "checkoutSuccess";
root.ownershipStatusReceived = false;
Commerce.alreadyOwned(root.itemId);
root.availableUpdatesReceived = false;
Commerce.getAvailableUpdates(root.itemId);
root.balanceReceived = false;
Commerce.balance();
} else {
root.activeView = "checkoutSuccess";
}
}