Fix breaking change from stringvalues

This commit is contained in:
Ryan Nowak 2015-10-23 15:43:50 -07:00
parent 636459a6f7
commit 68f1a45ea7
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ namespace Microsoft.AspNet.Localization
var cookie = httpContext.Request.Cookies[CookieName];
if (cookie == null)
if (cookie.Count == 0)
{
return Task.FromResult((ProviderCultureResult)null);
}