Open zhuolingzhao007 opened 4 months ago
In systems above iOS 17, the default implementation of URLConvertible fails to create a URL, while it can succeed on older systems. I understand that the issue is related to the character set being used.
the same code in the URLMatcher folder, URLConvertible file, line 41
无法初始化成功 URL(string: "http://%3Cpath:_%3E")
如果去掉: 就可以初始化成功 URL(string: "http://%3Cpath_%3E") 感觉上 iOS17的URL类型要求变得严格了
URL(string: "http://%3Cpath_%3E")
In systems above iOS 17, the default implementation of URLConvertible fails to create a URL, while it can succeed on older systems. I understand that the issue is related to the character set being used.