소스 검색

Fixes reversed var name

main
Eric Amodio 2 년 전
부모
커밋
f6f63cc706
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      src/git/remotes/provider.ts

+ 2
- 2
src/git/remotes/provider.ts 파일 보기

@ -339,13 +339,13 @@ export abstract class RichRemoteProvider extends RemoteProvider {
@log()
disconnect(silent: boolean = false): void {
const disconnected = this._session != null;
const connected = this._session != null;
this.invalidClientExceptionCount = 0;
this._prsByCommit.clear();
this._session = null;
if (disconnected) {
if (connected) {
void Container.instance.context.workspaceState.update(this.connectedKey, false);
this._onDidChange.fire();

불러오는 중...
취소
저장