fix cmd line args bug

Signed-off-by: kernelkind <kernelkind@gmail.com>
This commit is contained in:
kernelkind
2024-10-28 15:30:44 -04:00
parent 309477dca4
commit 0c7b5e7e59
2 changed files with 1 additions and 1 deletions

View File

@@ -694,6 +694,7 @@ impl Damus {
for key in parsed_args.keys {
info!("adding account: {}", key.pubkey);
accounts.add_account(key);
accounts.select_account(accounts.num_accounts() - 1);
}
// setup relays if we have them

View File

@@ -213,7 +213,6 @@ impl Args {
error!("failed to parse filter in '{}'", filter_file);
}
} else if arg == "--no-keystore" {
i += 1;
res.use_keystore = false;
}