[Issue #963] Perform default handling for NSURLAuthenticationMethodDefault authentication challenges

Signed-off-by: Mattt Thompson <m@mattt.me>
This commit is contained in:
Josh Vera 2013-05-10 11:18:57 -07:00 committed by Mattt Thompson
parent 618765b5a9
commit 3e5426d54b

View file

@ -630,6 +630,8 @@ willSendRequestForAuthenticationChallenge:(NSURLAuthenticationChallenge *)challe
break;
}
}
} else if ([challenge.protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodDefault]) {
[[challenge sender] performDefaultHandlingForAuthenticationChallenge:challenge];
}
}
#endif