Преглед изворни кода

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();

Loading…
Откажи
Сачувај