From f60f7a4dc1b977e67dc58d806ad3cd75f115fb8a Mon Sep 17 00:00:00 2001 From: Cody Date: Sat, 5 Oct 2024 14:17:20 -0700 Subject: [PATCH] Remove httpOnly setting from setCookie --- Oqtane.Client/UI/Interop.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Oqtane.Client/UI/Interop.cs b/Oqtane.Client/UI/Interop.cs index f2b59054..d3d1841f 100644 --- a/Oqtane.Client/UI/Interop.cs +++ b/Oqtane.Client/UI/Interop.cs @@ -22,7 +22,7 @@ namespace Oqtane.UI { _jsRuntime.InvokeVoidAsync( "Oqtane.Interop.setCookie", - name, value, days, secure, httpOnly, sameSite); + name, value, days, secure, sameSite); return Task.CompletedTask; } catch