Skip to content

Commit

Permalink
Hot fix cart
Browse files Browse the repository at this point in the history
  • Loading branch information
FPT-NMTung committed Mar 24, 2022
1 parent 7a7d831 commit 4d4358b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .idea/deploymentTargetDropDown.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,9 @@ public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceStat
@Override
public void onDestroyView() {
super.onDestroyView();
call.cancel();
if (call != null) {
call.cancel();
}
}

private void setEventBtnCheckout() {
Expand Down

0 comments on commit 4d4358b

Please sign in to comment.