Delete no-longer-needed Unicode support for URLs.

This commit is contained in:
Brent Simmons
2025-04-24 16:21:16 -07:00
parent 6f38765afb
commit 91b3110cd5
15 changed files with 17 additions and 1108 deletions

View File

@@ -81,7 +81,7 @@ class AddFeedViewController: UITableViewController {
let urlString = urlTextField.text ?? ""
let normalizedURLString = urlString.normalizedURL
guard !normalizedURLString.isEmpty, let url = URL(unicodeString: normalizedURLString) else {
guard !normalizedURLString.isEmpty, let url = URL(string: normalizedURLString) else {
return
}