We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6c72664 + 4c30f8b commit c02dc72Copy full SHA for c02dc72
stdlib/public/Darwin/Foundation/URL.swift
@@ -827,7 +827,8 @@ public struct URL : ReferenceConvertible, Equatable {
827
} else {
828
// Now we need to do something more expensive
829
if var c = URLComponents(url: self, resolvingAgainstBaseURL: true) {
830
- c.path = (c.path as NSString).appendingPathComponent(pathComponent)
+ let path = (c.path as NSString).appendingPathComponent(pathComponent)
831
+ c.path = isDirectory ? path + "/" : path
832
833
if let result = c.url {
834
return result
0 commit comments