1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-03-05 15:15:49 +02:00

startBackgroundFetch does not return errors

This commit is contained in:
matejcik 2019-07-19 14:38:57 +02:00 committed by Jesse Duffield
parent 8f786e3fd9
commit 7db1fee877

View File

@ -619,7 +619,7 @@ func (gui *Gui) goEvery(interval time.Duration, function func() error) {
}()
}
func (gui *Gui) startBackgroundFetch() error {
func (gui *Gui) startBackgroundFetch() {
g := gui.g
gui.waitForIntro.Wait()
isNew := gui.Config.GetIsNewRepo()
@ -635,7 +635,6 @@ func (gui *Gui) startBackgroundFetch() error {
return err
})
}
return nil
}
// Run setup the gui with keybindings and start the mainloop