Skip to content

Commit

Permalink
Bug Fix and failed boolean handle (1)
Browse files Browse the repository at this point in the history
  • Loading branch information
piyush89050 committed Feb 9, 2021
1 parent 57cbd8d commit e52fa38
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,12 @@ public void show() {
case GOOGLE:
if (interstitialAdGoogle != null && interstitialAdGoogle.isLoaded())
interstitialAdGoogle.show();
else
else {
loadAd();
if (listener != null)
listener.onAdClosed();

}
break;
case FACEBOOK:
if (interstitialAdFacebook != null && interstitialAdFacebook.isAdLoaded())
Expand Down

0 comments on commit e52fa38

Please sign in to comment.