From 4735c12bfd271dd731f9f01a1b18d1fd2848f8b2 Mon Sep 17 00:00:00 2001 From: sta Date: Sat, 27 Apr 2019 16:04:42 +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 8bfdf0e0..51082f12 100644 --- a/websocket-sharp/Net/CookieCollection.cs +++ b/websocket-sharp/Net/CookieCollection.cs @@ -583,7 +583,7 @@ namespace WebSocketSharp.Net internal void SetOrRemove (CookieCollection cookies) { - foreach (Cookie cookie in cookies) + foreach (var cookie in cookies._list) SetOrRemove (cookie); }