X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Plugin-Session-State-Cookie.git;a=blobdiff_plain;f=lib%2FCatalyst%2FPlugin%2FSession%2FState%2FCookie.pm;h=36448e6ade694494b71a12e7c93f04c93bf6cb60;hp=a55bdfded18364a04e4cad4ef38db2e047e61055;hb=HEAD;hpb=28b6b575312cf0cb2ef57823028796aa050ec38a diff --git a/lib/Catalyst/Plugin/Session/State/Cookie.pm b/lib/Catalyst/Plugin/Session/State/Cookie.pm index a55bdfd..36448e6 100644 --- a/lib/Catalyst/Plugin/Session/State/Cookie.pm +++ b/lib/Catalyst/Plugin/Session/State/Cookie.pm @@ -7,7 +7,7 @@ extends 'Catalyst::Plugin::Session::State'; use MRO::Compat; use Catalyst::Utils (); -our $VERSION = '0.17'; +our $VERSION = '0.18'; $VERSION =~ tr/_//d; has _deleted_session_id => ( is => 'rw' ); @@ -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; }