Just in my case we use proxy redirecting service, and cookies not throw validation by domens comparation.
If we set up this
// Is the cookie for current domain?
if (![validDomain hasSuffix:cookie.domain] && ![cookie.domain hasSuffix:validDomain]) {
//NSLog(@"Skipping %@ (because not %@)", cookie.properties, validDomain);
continue;
}
as optional params is it will be bad?
Just in my case we use proxy redirecting service, and cookies not throw validation by domens comparation.
If we set up this
as optional params is it will be bad?