Changes for IDNA support

This commit is contained in:
Nate Weaver
2020-07-06 10:06:12 -05:00
parent 9bd6f9e0fd
commit 1f9dfb80e2
5 changed files with 9 additions and 9 deletions

View File

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