From 9006752705d8e2984e0e4818f992cb0ae1495e2b Mon Sep 17 00:00:00 2001 From: leo Date: Mon, 21 Aug 2023 20:39:38 +0800 Subject: [PATCH] fix: fix stash and re-apply is not working on pull command --- src/Views/Popups/Pull.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Views/Popups/Pull.xaml.cs b/src/Views/Popups/Pull.xaml.cs index 1e297871..866d3fdc 100644 --- a/src/Views/Popups/Pull.xaml.cs +++ b/src/Views/Popups/Pull.xaml.cs @@ -47,7 +47,7 @@ namespace SourceGit.Views.Popups { return Task.Run(() => { Models.Watcher.SetEnabled(repo.Path, false); - var succ = new Commands.Pull(repo.Path, branch.Remote, branch.Name, rebase, autoStash, UpdateProgress).Exec(); + var succ = new Commands.Pull(repo.Path, branch.Remote, branch.Name, rebase, autoStash, UpdateProgress).Run(); Models.Watcher.SetEnabled(repo.Path, true); return succ; });