1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-06-29 00:51:35 +02:00

minor cleanup

WIP
This commit is contained in:
Jesse Duffield
2020-08-11 20:18:50 +10:00
parent 23299f88e9
commit 79e73d2eff
5 changed files with 16 additions and 18 deletions

View File

@ -129,8 +129,8 @@ func (gui *Gui) handleGitFetch(g *gocui.Gui, v *gocui.View) error {
return err
}
go func() {
unamePassOpend, err := gui.fetch(g, v, true)
gui.HandleCredentialsPopup(g, unamePassOpend, err)
err := gui.fetch(g, v, true)
gui.HandleCredentialsPopup(g, err)
}()
return nil
}