We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c16bcf2 commit 7146385Copy full SHA for 7146385
src/env/node/git/sub-providers/contributors.ts
@@ -93,8 +93,8 @@ export class ContributorsGitSubProvider implements GitContributorsSubProvider {
93
);
94
95
for await (const c of parser.parseAsync(stream)) {
96
- if (signal?.aborted) {
97
- // cancellable?.cancel();
+ if (signal?.aborted || cancellation?.isCancellationRequested) {
+ cancellable?.cancel();
98
break;
99
}
100
0 commit comments