Skip to content

Commit 27a45b9

Browse files
committed
Ensures resuming a repo fires queue changes
1 parent 9b2fb18 commit 27a45b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/git/models/repository.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -730,12 +730,12 @@ export class Repository implements Disposable {
730730

731731
if (this._pendingRepoChange != null) {
732732
Logger.debug(scope, `Firing pending repo ${this._pendingRepoChange.toString(true)}`);
733-
this._fireChangeDebounced?.();
733+
this.fireChangeCore();
734734
}
735735

736736
if (this._pendingFileSystemChange != null) {
737737
Logger.debug(scope, `Firing pending file system changes`);
738-
this._fireFileSystemChangeDebounced?.();
738+
void this.fireFileSystemChangeCore();
739739
}
740740
}
741741

0 commit comments

Comments
 (0)