summaryrefslogtreecommitdiff
path: root/lib/config
diff options
context:
space:
mode:
authorErik Michelson2020-09-08 09:58:15 +0200
committerErik Michelson2020-09-08 09:58:15 +0200
commit4ece86f0efa1f8f3e4dab0abf810800a045ce632 (patch)
treeb3d0997adf54e1d4105f9bf6949f509b5abd6699 /lib/config
parent387e6682757d32b9d9e9b7e3d443143a39ce2184 (diff)
Update documentation and messages to new default value
Signed-off-by: Erik Michelson <github@erik.michelson.eu>
Diffstat (limited to 'lib/config')
-rw-r--r--lib/config/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/config/index.js b/lib/config/index.js
index 203b9ef9..b5461a8d 100644
--- a/lib/config/index.js
+++ b/lib/config/index.js
@@ -52,7 +52,7 @@ if (['debug', 'verbose', 'info', 'warn', 'error'].includes(config.loglevel)) {
}
if (!['strict', 'lax', 'none'].includes(config.cookiePolicy)) {
- logger.error('Cookie SameSite policy %s does not exist. Falling back to strict. Available values are: strict, lax, none.', config.cookiePolicy)
+ logger.error('Cookie SameSite policy %s does not exist. Falling back to lax. Available values are: strict, lax, none.', config.cookiePolicy)
config.cookiePolicy = 'lax'
}