1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-04 03:48:07 +02:00

Forgot to set the git fetch timeout back to 60s

This commit is contained in:
mjarkk 2018-11-25 13:23:32 +01:00
parent 9da1382e09
commit d91493b587

View File

@ -453,7 +453,7 @@ func (gui *Gui) Run() error {
go func() {
err := gui.fetch(g)
if err == nil {
gui.goEvery(g, time.Second*10, gui.fetch)
gui.goEvery(g, time.Second*60, gui.fetch)
}
}()
gui.goEvery(g, time.Second*10, gui.refreshFiles)