From: Graham Knop Date: Mon, 11 Jul 2022 09:20:22 +0000 (+0200) Subject: trim extraneous space X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Plugin-Session-State-Cookie.git;a=commitdiff_plain;h=HEAD trim extraneous space --- diff --git a/lib/Catalyst/Plugin/Session/State/Cookie.pm b/lib/Catalyst/Plugin/Session/State/Cookie.pm index 78be7f7..36448e6 100644 --- a/lib/Catalyst/Plugin/Session/State/Cookie.pm +++ b/lib/Catalyst/Plugin/Session/State/Cookie.pm @@ -84,7 +84,7 @@ sub make_session_cookie { $cookie->{samesite} = $cfg->{cookie_samesite}; $cookie->{samesite} = "Lax" - unless defined $cookie->{ samesite}; # default = Lax + unless defined $cookie->{samesite}; # default = Lax return $cookie; }