From 420f4a12dce1203017d814897b216ebbfc4a3297 Mon Sep 17 00:00:00 2001 From: Hailey Date: Wed, 9 Oct 2024 15:19:13 -0700 Subject: [PATCH] nit --- modules/BlueskyClip/ViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/BlueskyClip/ViewController.swift b/modules/BlueskyClip/ViewController.swift index f3154c0c6ea..5385ab70016 100644 --- a/modules/BlueskyClip/ViewController.swift +++ b/modules/BlueskyClip/ViewController.swift @@ -81,7 +81,7 @@ class ViewController: UIViewController, WKScriptMessageHandler, WKNavigationDele func isStarterPackUrl(_ url: URL) -> Bool { var host: String? if #available(iOS 16.0, *) { - host = url.host() ?? "" + host = url.host() } else { host = url.host }