feat(pluginlist): worked on plugin list

This commit is contained in:
Torkel Ödegaard
2016-04-11 20:33:58 -04:00
parent 3a64a11745
commit 6ce934f1dd
10 changed files with 41 additions and 25 deletions

View File

@@ -26,7 +26,10 @@ func StartPluginUpdateChecker() {
return
}
ticker := time.NewTicker(time.Second * 24)
// do one check directly
go checkForUpdates()
ticker := time.NewTicker(time.Minute * 10)
for {
select {
case <-ticker.C: