From 9071b8fbe74a088ded7adb63b640fd5282eb5e79 Mon Sep 17 00:00:00 2001 From: John Luo Date: Mon, 7 Mar 2016 13:55:52 -0800 Subject: [PATCH] Redress cookie name --- src/Microsoft.AspNetCore.Identity/IdentityCookieOptions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.AspNetCore.Identity/IdentityCookieOptions.cs b/src/Microsoft.AspNetCore.Identity/IdentityCookieOptions.cs index 5326490345..037062b1bb 100644 --- a/src/Microsoft.AspNetCore.Identity/IdentityCookieOptions.cs +++ b/src/Microsoft.AspNetCore.Identity/IdentityCookieOptions.cs @@ -13,7 +13,7 @@ namespace Microsoft.AspNetCore.Identity /// public class IdentityCookieOptions { - private static readonly string CookiePrefix = ".AspNetCore.Identity"; + private static readonly string CookiePrefix = "Identity"; private static readonly string DefaultApplicationScheme = CookiePrefix + ".Application"; private static readonly string DefaultExternalScheme = CookiePrefix + ".External"; private static readonly string DefaultTwoFactorRememberMeScheme = CookiePrefix + ".TwoFactorRememberMe";