diff options
author | 2023-11-06 19:09:10 +0000 | |
---|---|---|
committer | 2023-11-06 20:51:19 +0100 | |
commit | ba614af82d6b6a85d0c7c387db512fed4b602923 (patch) | |
tree | d28f7840ce6ead657be77d32507700086a53d57b /internal/config/options.go | |
parent | 2b8342fcd5aa77e2f26f9349f3b18f471bd50011 (diff) | |
download | v2-ba614af82d6b6a85d0c7c387db512fed4b602923.tar.gz v2-ba614af82d6b6a85d0c7c387db512fed4b602923.tar.zst v2-ba614af82d6b6a85d0c7c387db512fed4b602923.zip |
Disable WebAuthn by default because it requires to configure the BASE_URL
Diffstat (limited to 'internal/config/options.go')
-rw-r--r-- | internal/config/options.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/config/options.go b/internal/config/options.go index 5ee4ae69..626d01b5 100644 --- a/internal/config/options.go +++ b/internal/config/options.go @@ -81,7 +81,7 @@ const ( defaultMetricsPassword = "" defaultWatchdog = true defaultInvidiousInstance = "yewtu.be" - defaultWebAuthn = true + defaultWebAuthn = false ) var defaultHTTPClientUserAgent = "Mozilla/5.0 (compatible; Miniflux/" + version.Version + "; +https://miniflux.app)" |