Update MyCookieManager.swift
Added force unwrap fix
This commit is contained in:
parent
2da9db9769
commit
840c71b2ef
@ -131,6 +131,12 @@ public class MyCookieManager: ChannelDelegate {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if let cookie = HTTPCookie(properties: properties) {
|
||||
httpCookieStore.setCookie(cookie, completionHandler: {() in
|
||||
result(true)
|
||||
})
|
||||
}
|
||||
let cookie = HTTPCookie(properties: properties)!
|
||||
|
||||
MyCookieManager.httpCookieStore.setCookie(cookie, completionHandler: {() in
|
||||
|
Loading…
x
Reference in New Issue
Block a user