Unity Ads Crash In Airplane Mode

Hi all,

My iOS app is crashing when phone is in airplane mode.
Specifically, it crashes when calling the Unity ad.
Is there a way to prevent this from happening?
BTW, using the below script:

using UnityEngine;
using UnityEngine.Advertisements;

public class UnityAdsExample : MonoBehaviour
{
  public void ShowAd()
  {
    if (Advertisement.IsReady())
    {
      Advertisement.Show();
    }
  }
}

Application.internetReachability could probably help you build a workaround. No idea why ads crash though.

Thanks for the reply.
BTW, what is supposed to happen with Unity Ads when there isn’t any Internet connectivity?