mirror of
https://github.com/android-password-store/Android-Password-Store
synced 2025-08-31 22:35:17 +00:00
Disable automatic copy on decrypt by default (#1006)
Fixes #476 Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
@@ -11,6 +11,7 @@ All notable changes to this project will be documented in this file.
|
||||
|
||||
- Slightly reduce APK size
|
||||
- Always show the parent path in entries
|
||||
- Passwords will no longer be copied to the clipboard by default
|
||||
|
||||
### Fixed
|
||||
|
||||
|
@@ -206,7 +206,7 @@ class DecryptActivity : BasePgpActivity(), OpenPgpServiceConnection.OnBound {
|
||||
}
|
||||
}
|
||||
|
||||
if (settings.getBoolean(PreferenceKeys.COPY_ON_DECRYPT, true)) {
|
||||
if (settings.getBoolean(PreferenceKeys.COPY_ON_DECRYPT, false)) {
|
||||
copyPasswordToClipboard(entry.password)
|
||||
}
|
||||
} catch (e: Exception) {
|
||||
|
Reference in New Issue
Block a user