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

Fixes undefined exception

main
Eric Amodio пре 6 година
родитељ
комит
c4d7de1978
1 измењених фајлова са 3 додато и 1 уклоњено
  1. +3
    -1
      src/views/gitExplorer.ts

+ 3
- 1
src/views/gitExplorer.ts Прегледај датотеку

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

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