Skip to content

Commit

Permalink
Disable autofill-v2 (#4056)
Browse files Browse the repository at this point in the history
Disabled autofill-v2 as it seems to cause strange issues as reported
here: #4052

Also added the Vaultwarden server version back again but at a different
location.

Fixes #4052
  • Loading branch information
BlackDex authored Nov 8, 2023
1 parent efc6eb0 commit 03c6ed2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/api/core/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,8 @@ fn config() -> Json<Value> {
"gitHash": option_env!("GIT_REV"),
"server": {
"name": "Vaultwarden",
"url": "https://github.com/dani-garcia/vaultwarden"
"url": "https://github.com/dani-garcia/vaultwarden",
"version": crate::VERSION
},
"environment": {
"vault": domain,
Expand All @@ -216,8 +217,8 @@ fn config() -> Json<Value> {
// Any feature flags that we want the clients to use
// Can check the enabled ones at:
// https://vault.bitwarden.com/api/config
"autofill-v2": true,
"fido2-vault-credentials": true
"fido2-vault-credentials": true, // Passkey support
"autofill-v2": false, // Disabled because it is causing issues https://github.com/dani-garcia/vaultwarden/discussions/4052
},
"object": "config",
}))
Expand Down

0 comments on commit 03c6ed2

Please sign in to comment.