Explorar el Código

Fixes last fetched updating with single repo

main
Eric Amodio hace 4 años
padre
commit
c87cc26f70
Se han modificado 1 ficheros con 6 adiciones y 1 borrados
  1. +6
    -1
      src/views/commitsView.ts

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

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

Cargando…
Cancelar
Guardar