We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7477219 commit 31acf11Copy full SHA for 31acf11
src/lib.rs
@@ -930,6 +930,8 @@ Warning: Saving will discard all the entries that could not be recovered.
930
},
931
LoopResult::Timeout => {
932
warn!("Idle time of {} seconds elapsed! Locking...", s.props.idle_timeout_seconds());
933
+ // Remove the sensitive data from the memory
934
+ s.safe = Safe::default();
935
let message = format!("Idle time of {} seconds elapsed! Locking...", s.props.idle_timeout_seconds());
936
let _ = s.editor.show_message(&message, vec![UserOption::ok()], MessageSeverity::default()).await;
937
s.user_selection = UserSelection::GoTo(Menu::TryPass(false))
0 commit comments