oh good to know! I should strip them off in my RelayURL struct
Discussion
Here’s the code I just wrote for it:
extension URL {
func strippingTrailingSlash() -> String {
var string = absoluteString
if string.last == "/" {
string.removeLast()
}
return string
}
}
