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

@@ -91,7 +91,7 @@ class AddWebFeedWindowController : NSWindowController, AddFeedWindowController {
cancelSheet()
return;
}
guard let url = URL(unicodeString: normalizedURLString) else {
guard let url = URL(string: normalizedURLString) else {
cancelSheet()
return
}