Przeglądaj źródła

Fixes last fetched updating with single repo

main
Eric Amodio 4 lat temu
rodzic
commit
c87cc26f70
1 zmienionych plików z 6 dodań i 1 usunięć
  1. +6
    -1
      src/views/commitsView.ts

+ 6
- 1
src/views/commitsView.ts Wyświetl plik

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

Ładowanie…
Anuluj
Zapisz