Skip to content

Commit

Permalink
Only fallback to base implementation after trying all descriptors.
Browse files Browse the repository at this point in the history
  • Loading branch information
dkocher committed Nov 29, 2023
1 parent 4e91997 commit 3aba693
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,8 @@ public override OAuthTokens findOAuthTokens(Host bookmark)
}
// Continue with deprecated descriptors
}
return base.findOAuthTokens(bookmark);
}
return OAuthTokens.EMPTY;
return base.findOAuthTokens(bookmark);
}

public override string findPrivateKeyPassphrase(Host bookmark)
Expand Down

0 comments on commit 3aba693

Please sign in to comment.