We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 184bd6a commit fff58e4Copy full SHA for fff58e4
dotnet/src/webdriver/CookieJar.cs
@@ -136,9 +136,9 @@ private ReadOnlyCollection<Cookie> GetAllCookies()
136
{
137
foreach (object rawCookie in cookies)
138
139
- Dictionary<string, object> cookieDictionary = (Dictionary<string, object>)rawCookie;
140
if (rawCookie != null)
141
+ Dictionary<string, object> cookieDictionary = (Dictionary<string, object>)rawCookie;
142
toReturn.Add(Cookie.FromDictionary(cookieDictionary));
143
}
144
0 commit comments