We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0502521 commit 1902b77Copy full SHA for 1902b77
ios/Capacitor/Capacitor/Plugins/CapacitorCookieManager.swift
@@ -88,7 +88,7 @@ public class CapacitorCookieManager {
88
let jar = HTTPCookieStorage.shared
89
guard let url = self.getServerUrl() else { return "" }
90
guard let cookies = jar.cookies(for: url) else { return "" }
91
- return cookies.map({"\($0.name)=\($0.value)"}).joined(separator: ";")
+ return cookies.map({"\($0.name)=\($0.value)"}).joined(separator: "; ")
92
}
93
94
public func deleteCookie(_ url: URL, _ key: String) {
0 commit comments