notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

commit 5805df266a9701e40d291e10aa864ef65152e2fb
parent d265d48c0b2d02c5b73071d5569ecaea2fb3d48e
Author: William Casarin <jb55@jb55.com>
Date:   Fri,  5 Jul 2024 07:37:13 -0700

don't use an actual keystorage in Damus test apps

Reported-by: kernelkind <kernelkind@gmail.com>
Fixes: https://github.com/damus-io/notedeck/issues/150
Signed-off-by: William Casarin <jb55@jb55.com>

Diffstat:
Msrc/app.rs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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,