Skip to content

Commit 51c9d49

Browse files
Fixes options being lost in pull all (closes #3909)
1 parent 5042c24 commit 51c9d49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/git/models/repository.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ export class Repository implements Disposable {
720720
@log()
721721
async pull(options?: { progress?: boolean; rebase?: boolean }) {
722722
const { progress, ...opts } = { progress: true, ...options };
723-
if (!progress) return this.pullCore();
723+
if (!progress) return this.pullCore(opts);
724724

725725
return window.withProgress(
726726
{

0 commit comments

Comments
 (0)