ソースを参照

Fixes last fetched updating with single repo

main
Eric Amodio 4年前
コミット
c87cc26f70
1個のファイルの変更6行の追加1行の削除
  1. +6
    -1
      src/views/commitsView.ts

+ 6
- 1
src/views/commitsView.ts ファイルの表示

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

読み込み中…
キャンセル
保存