BNetworkCookie: Allow cookies without a path

* They will be valid for the whole domain
 * login.live.com cookie test now works
This commit is contained in:
Adrien Destugues
2013-10-16 13:51:55 +02:00
parent 400153ebf5
commit f289aa4c74
+1 -1
View File
@@ -413,7 +413,7 @@ BNetworkCookie::IsSessionCookie() const
bool
BNetworkCookie::IsValid() const
{
return fInitStatus == B_OK && HasName() && HasDomain() && HasPath();
return fInitStatus == B_OK && HasName() && HasDomain();
}