From ecc78958c4a212ecb4909cf788e0a041200ed62f Mon Sep 17 00:00:00 2001 From: sta Date: Mon, 22 Apr 2019 14:19:48 +0900 Subject: [PATCH] [Modify] Polish it --- websocket-sharp/Net/CookieCollection.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/websocket-sharp/Net/CookieCollection.cs b/websocket-sharp/Net/CookieCollection.cs index cd454d31..b63344f7 100644 --- a/websocket-sharp/Net/CookieCollection.cs +++ b/websocket-sharp/Net/CookieCollection.cs @@ -644,7 +644,7 @@ namespace WebSocketSharp.Net if (cookies == null) throw new ArgumentNullException ("cookies"); - foreach (Cookie cookie in cookies) + foreach (var cookie in cookies._list) add (cookie); }