File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -163,12 +163,12 @@ export class GitExplorer implements TreeDataProvider<ExplorerNode> {
163163 switch ( this . _view ) {
164164 case GitExplorerView . History : {
165165 const promise = this . getHistoryNode ( editor || window . activeTextEditor ) ;
166- this . _loading = promise . then ( async _ => await Functions . wait ( 0 ) ) ;
166+ this . _loading = promise . then ( _ => Functions . wait ( 0 ) ) ;
167167 return promise ;
168168 }
169169 default : {
170170 const promise = this . git . getRepositories ( ) ;
171- this . _loading = promise . then ( async _ => await Functions . wait ( 0 ) ) ;
171+ this . _loading = promise . then ( _ => Functions . wait ( 0 ) ) ;
172172
173173 const repositories = [ ...await promise ] ;
174174 if ( repositories . length === 0 ) return undefined ; // new MessageNode('No repositories found');
You can’t perform that action at this time.
0 commit comments