Skip to content

Commit

Permalink
Fixing Interstitial IsValid & ReadyToShow
Browse files Browse the repository at this point in the history
  • Loading branch information
SCastanedaMunoz committed Jun 22, 2023
1 parent 96a81d4 commit 756c725
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public override void Show()

/// <inheritdoc cref="ChartboostMediationFullScreenBase.ReadyToShow"/>>
public override bool ReadyToShow()
=> IsValid && _platformInterstitial.ReadyToShow();
=> _platformInterstitial.IsValid && _platformInterstitial.ReadyToShow();

/// <inheritdoc cref="ChartboostMediationFullScreenBase.ClearLoaded"/>>
public override void ClearLoaded()
Expand Down

0 comments on commit 756c725

Please sign in to comment.