Skip to content

Commit

Permalink
UriOpener - fix for iOS >= 18 (#662)
Browse files Browse the repository at this point in the history
  • Loading branch information
akrol95 authored Jan 16, 2025
1 parent 3d2c2be commit 9d20ecd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BMM.UI.iOS/Application/Implementations/UI/UriOpener.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public UriOpener(IAnalytics analytics) : base(analytics)

protected override void PlatformOpenUri(Uri uri)
{
UIApplication.SharedApplication.OpenUrl(uri);
UIApplication.SharedApplication.OpenUrl(uri, new NSDictionary(), null);
}
}
}

0 comments on commit 9d20ecd

Please sign in to comment.