Remove no-longer-needed Unicode support for URL (since it’s part of iOS and macOS now).

This commit is contained in:
Brent Simmons
2024-06-09 10:58:07 -07:00
parent 447aa7a448
commit e74c81518e
14 changed files with 13 additions and 1058 deletions

View File

@@ -17,7 +17,7 @@ struct HTMLMetadataDownloader {
@MainActor static func downloadMetadata(for url: String) async -> RSHTMLMetadata? {
guard let actualURL = URL(unicodeString: url) else {
guard let actualURL = URL(string: url) else {
return nil
}