Browse Source

Fixes #1506: Removes GitHub authentication badge

main
Eric Amodio 2 years ago
parent
commit
c58e71b2b3
2 changed files with 2 additions and 0 deletions
  1. +1
    -0
      CHANGELOG.md
  2. +1
    -0
      src/git/remotes/provider.ts

+ 1
- 0
CHANGELOG.md View File

@ -23,6 +23,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
### Fixed
- Fixes [#1506](https://github.com/gitkraken/vscode-gitlens/issues/1506) - Annoying Github login request
- Fixes [#1735](https://github.com/gitkraken/vscode-gitlens/issues/1735) - "gitlens.hovers.detailsMarkdownFormat" edit error
- Fixes [#1745](https://github.com/gitkraken/vscode-gitlens/issues/1745) - autolinks.url encodes hash char
- Fixes [#1572](https://github.com/gitkraken/vscode-gitlens/issues/1572) - Forced regular expression search in changes

+ 1
- 0
src/git/remotes/provider.ts View File

@ -595,6 +595,7 @@ export abstract class RichRemoteProvider extends RemoteProvider {
try {
session = await authentication.getSession(this.authProvider.id, this.authProvider.scopes, {
createIfNone: createIfNeeded,
silent: !createIfNeeded,
});
} catch (ex) {
await Container.instance.context.workspaceState.update(this.connectedKey, undefined);

Loading…
Cancel
Save