Decrese polling to 60sec

This commit is contained in:
Daniel Mason 2021-09-01 21:29:23 +12:00
parent b37a425589
commit 3fc389f1d6
Signed by: idanoo
GPG key ID: 387387CDBC02F132

View file

@ -15,7 +15,7 @@ func Lesgoooo() {
endTicker := make(chan bool)
// Timer to run every minute
minuteTicker := time.NewTicker(time.Duration(15) * time.Second)
minuteTicker := time.NewTicker(time.Duration(60) * time.Second)
// Initial check on load
go checkForUpdates()