We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71d74ff commit 2ec3631Copy full SHA for 2ec3631
src/Modules/SimplCommerce.Module.Core/Extensions/WorkContext.cs
@@ -87,7 +87,8 @@ private void SetUserGuidCookies(Guid userGuid)
87
_httpContext.Response.Cookies.Append(UserGuidCookiesName, _currentUser.UserGuid.ToString(), new CookieOptions
88
{
89
Expires = DateTime.UtcNow.AddYears(5),
90
- HttpOnly = true
+ HttpOnly = true,
91
+ IsEssential = true
92
});
93
}
94
0 commit comments