From 5805df266a9701e40d291e10aa864ef65152e2fb Mon Sep 17 00:00:00 2001 From: William Casarin Date: Fri, 5 Jul 2024 07:37:13 -0700 Subject: [PATCH] don't use an actual keystorage in Damus test apps Reported-by: kernelkind Fixes: https://github.com/damus-io/notedeck/issues/150 Signed-off-by: William Casarin --- src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.rs b/src/app.rs index 6c97202..8fae43f 100644 --- a/src/app.rs +++ b/src/app.rs @@ -829,7 +829,7 @@ impl Damus { timelines, textmode: false, ndb: Ndb::new(data_path.as_ref().to_str().expect("db path ok"), &config).expect("ndb"), - account_manager: AccountManager::new(None, determine_key_storage_type()), + account_manager: AccountManager::new(None, KeyStorageType::None), frame_history: FrameHistory::default(), show_account_switcher: false, show_global_popup: true,