mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-26 15:05:50 +03:00
- filters: fix crash after update
This commit is contained in:
parent
55a4536997
commit
1c5b613048
1 changed files with 1 additions and 1 deletions
|
@ -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++
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue