Procházet zdrojové kódy

Fixes undefined exception

main
Eric Amodio před 6 roky
rodič
revize
c4d7de1978
1 změnil soubory, kde provedl 3 přidání a 1 odebrání
  1. +3
    -1
      src/views/gitExplorer.ts

+ 3
- 1
src/views/gitExplorer.ts Zobrazit soubor

@ -202,7 +202,9 @@ export class GitExplorer extends Disposable implements TreeDataProvider
this.setRoot(await this.getRootNode(window.activeTextEditor));
}
this._root!.refresh();
if (this._root !== undefined) {
this._root.refresh();
}
this._onDidChangeTreeData.fire();
}

Načítá se…
Zrušit
Uložit