- filters: fix crash after update

This commit is contained in:
Simon Zolin 2019-07-16 15:29:36 +03:00
parent 55a4536997
commit 1c5b613048
1 changed files with 1 additions and 1 deletions

View File

@ -209,12 +209,12 @@ func refreshFiltersIfNecessary(force bool) int {
for i := range updateFilters {
uf := &updateFilters[i]
updated, err := uf.update()
updateFlags = append(updateFlags, updated)
if err != nil {
log.Printf("Failed to update filter %s: %s\n", uf.URL, err)
continue
}
uf.LastUpdated = time.Now()
updateFlags = append(updateFlags, updated)
if updated {
updateCount++
}