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.
1 parent e73c6cb commit 40ee5aaCopy full SHA for 40ee5aa
Sources/UnidocServer/Operations/Server.Operation.swift
@@ -223,6 +223,8 @@ extension Server.Operation:HTTPServerOperation
223
return nil
224
}
225
226
+ let cookies:Server.Cookies = .init(headers[canonicalForm: "cookie"])
227
+
228
let endpoint:Server.Endpoint?
229
230
switch root
@@ -236,7 +238,7 @@ extension Server.Operation:HTTPServerOperation
236
238
237
239
if let endpoint:Server.Endpoint
240
{
- self.init(endpoint: endpoint, cookies: .init())
241
+ self.init(endpoint: endpoint, cookies: cookies)
242
243
else
244
0 commit comments