diff options
Diffstat (limited to 'src/login.rs')
| -rw-r--r-- | src/login.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/login.rs b/src/login.rs index 0a20a90..6c3acfa 100644 --- a/src/login.rs +++ b/src/login.rs | |||
| @@ -628,7 +628,11 @@ async fn get_user_details( | |||
| 628 | let term = console::Term::stderr(); | 628 | let term = console::Term::stderr(); |
| 629 | term.write_line("searching for profile...")?; | 629 | term.write_line("searching for profile...")?; |
| 630 | let (_, progress_reporter) = client | 630 | let (_, progress_reporter) = client |
| 631 | .fetch_all(git_repo.get_path()?, &HashSet::new()) | 631 | .fetch_all( |
| 632 | git_repo.get_path()?, | ||
| 633 | &HashSet::new(), | ||
| 634 | &HashSet::from_iter(vec![*public_key]), | ||
| 635 | ) | ||
| 632 | .await?; | 636 | .await?; |
| 633 | events = get_event_from_global_cache(git_repo.get_path()?, filters).await?; | 637 | events = get_event_from_global_cache(git_repo.get_path()?, filters).await?; |
| 634 | if !events.is_empty() { | 638 | if !events.is_empty() { |