We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
An HTTP server can instruct remote clients to remove a cookie by setting its value to an empty string. When this happens this assertion fails:
`+ (void)addCookieToSharedCookiesStorage:(NSHTTPCookie *)cookie { [[NSHTTPCookieStorage sharedHTTPCookieStorage] setCookie:cookie];
#if DEBUG NSHTTPCookie *readCookie = [[[NSHTTPCookieStorage sharedHTTPCookieStorage] cookies] lastObject]; NSAssert(readCookie, @"cannot read any cookie after adding one"); #endif }`
It shouldn't attempt to reread a cookie with an empty value.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
An HTTP server can instruct remote clients to remove a cookie by setting its value to an empty string.
When this happens this assertion fails:
`+ (void)addCookieToSharedCookiesStorage:(NSHTTPCookie *)cookie {
[[NSHTTPCookieStorage sharedHTTPCookieStorage] setCookie:cookie];
#if DEBUG
NSHTTPCookie *readCookie = [[[NSHTTPCookieStorage sharedHTTPCookieStorage] cookies] lastObject];
NSAssert(readCookie, @"cannot read any cookie after adding one");
#endif
}`
It shouldn't attempt to reread a cookie with an empty value.
The text was updated successfully, but these errors were encountered: