Skip to content

Commit

Permalink
🐛 Fix do not work progressbar
Browse files Browse the repository at this point in the history
  • Loading branch information
ChenCMD committed Nov 20, 2020
1 parent 0a91524 commit 45c5ac1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/vscodeWrapper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,5 @@ export async function createProgressBar<T>(
location: ProgressLocation.Notification,
cancellable: false,
title
}, async progress => await task(progress.report));
}, async progress => await task((value: { increment?: number, message?: string }) => progress.report(value)));
}

0 comments on commit 45c5ac1

Please sign in to comment.