Update lastupdate only when fetching

This commit is contained in:
Michael K 2014-11-28 14:55:38 +01:00
parent 87b95b233d
commit 4840ef15a3
1 changed files with 1 additions and 1 deletions

View File

@ -154,6 +154,7 @@ func (this *Feed) FetchClient(uri string, client *http.Client, charset xmlx.Char
return return
} }
this.lastupdate = time.Now().UTC().UnixNano()
this.Url = uri this.Url = uri
doc := xmlx.New() doc := xmlx.New()
@ -250,7 +251,6 @@ func (this *Feed) CanUpdate() bool {
} }
} }
this.lastupdate = utc.UnixNano()
return true return true
} }