diff --git a/src/Microsoft.AspNet.Authentication.Cookies/ChunkingCookieManager.cs b/src/Microsoft.AspNet.Authentication.Cookies/ChunkingCookieManager.cs index dbd94f844d..6cda19b466 100644 --- a/src/Microsoft.AspNet.Authentication.Cookies/ChunkingCookieManager.cs +++ b/src/Microsoft.AspNet.Authentication.Cookies/ChunkingCookieManager.cs @@ -87,7 +87,7 @@ namespace Microsoft.AspNet.Authentication.Cookies for (var chunkId = 1; chunkId <= chunksCount; chunkId++) { var chunk = requestCookies[key + "C" + chunkId.ToString(CultureInfo.InvariantCulture)]; - if (chunk == null) + if (chunk.Count == 0) { if (ThrowForPartialCookies) {