Ver a proveniência

Fixes last fetched updating with single repo

main
Eric Amodio há 4 anos
ascendente
cometimento
c87cc26f70
1 ficheiros alterados com 6 adições e 1 eliminações
  1. +6
    -1
      src/views/commitsView.ts

+ 6
- 1
src/views/commitsView.ts Ver ficheiro

@ -147,7 +147,12 @@ export class CommitsRepositoryNode extends RepositoryFolderNode
if (interval !== Repository.getLastFetchedUpdateInterval(lastFetched)) {
void this.resetSubscription();
}
void this.view.triggerNodeChange(this);
if (this.splatted) {
void this.view.triggerNodeChange(this.parent ?? this);
} else {
void this.view.triggerNodeChange(this);
}
}, interval),
);
}

Carregando…
Cancelar
Guardar