Skip to content

Commit

Permalink
Fixes options being lost in pull all (closes #3909)
Browse files Browse the repository at this point in the history
  • Loading branch information
axosoft-ramint committed Jan 6, 2025
1 parent 5042c24 commit 51c9d49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/git/models/repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ export class Repository implements Disposable {
@log()
async pull(options?: { progress?: boolean; rebase?: boolean }) {
const { progress, ...opts } = { progress: true, ...options };
if (!progress) return this.pullCore();
if (!progress) return this.pullCore(opts);

return window.withProgress(
{
Expand Down

0 comments on commit 51c9d49

Please sign in to comment.