diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2023-11-30 13:09:11 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2023-11-30 13:09:11 +0530 |
commit | 23b4d2a6c186ad7027c572e8713140427fb88001 (patch) | |
tree | e2c5c058fc69e63021383585b06f7c2db0e4cc6f /app | |
parent | f57c2669fcccd8e6ded0bcb57a4ca2e01a6ebf86 (diff) |
feat: try out new SSH layer again
The underlying bug that we hit before has been fixed so this is ready for another try
Diffstat (limited to 'app')
-rw-r--r-- | app/src/main/java/app/passwordstore/util/features/Feature.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/main/java/app/passwordstore/util/features/Feature.kt b/app/src/main/java/app/passwordstore/util/features/Feature.kt index f046dbd7..705ef18b 100644 --- a/app/src/main/java/app/passwordstore/util/features/Feature.kt +++ b/app/src/main/java/app/passwordstore/util/features/Feature.kt @@ -14,7 +14,7 @@ enum class Feature( ) { /** Opt into the new SSH layer implemented as a freestanding module. */ - EnableNewSSHLayer(false, "enable_new_ssh"), + EnableNewSSHLayer(true, "enable_new_ssh"), /** Opt into a cache layer for PGP passphrases. */ EnablePGPPassphraseCache(false, "enable_gpg_passphrase_cache"), |