Delete no-longer-needed (due to OS changes) UTS46 URL handling.

This commit is contained in:
Brent Simmons
2024-11-09 10:23:13 -08:00
parent 2b76968391
commit 05347129bf
14 changed files with 17 additions and 1107 deletions

View File

@@ -15,7 +15,7 @@ struct HTMLMetadataDownloader {
static let serialDispatchQueue = DispatchQueue(label: "HTMLMetadataDownloader")
static func downloadMetadata(for url: String, _ completion: @escaping (RSHTMLMetadata?) -> Void) {
guard let actualURL = URL(unicodeString: url) else {
guard let actualURL = URL(string: url) else {
completion(nil)
return
}