import updater effeciency

pull/432/head
Darien Raymond 2017-02-26 15:01:43 +01:00
parent d93ff628bc
commit f87b0fcde7
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
1 changed files with 2 additions and 1 deletions

View File

@ -147,9 +147,10 @@ func (v *Updater) Run() {
if v.shouldTerminate() {
return
}
interval := v.Interval()
for v.shouldContinue() {
v.updateFunc()
time.Sleep(v.Interval())
time.Sleep(interval)
}
}
}