Fixes #1175. Unescape fragment of legacy format url.
This commit is contained in:
@ -82,7 +82,7 @@ class ServerProfile: NSObject, NSCopying {
|
|||||||
if let index = base64End {
|
if let index = base64End {
|
||||||
let i = urlStr.index(index, offsetBy: 1)
|
let i = urlStr.index(index, offsetBy: 1)
|
||||||
let fragment = String(urlStr[i...])
|
let fragment = String(urlStr[i...])
|
||||||
return (s, fragment)
|
return (s, fragment.removingPercentEncoding)
|
||||||
}
|
}
|
||||||
return (s, nil)
|
return (s, nil)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user