Fixed the percent encoding for the "pathString" computed property of the URL+Extensions extension in the library target.

This commit is contained in:
2025-02-19 00:26:17 +01:00
parent 6a3b9b5141
commit 0079820222
2 changed files with 5 additions and 3 deletions
@@ -16,7 +16,7 @@ extension URL {
var pathString: String {
if #available(macOS 13.0, *) {
path(percentEncoded: true)
path(percentEncoded: false)
} else {
path
}