Added missing this

This commit is contained in:
Michael K 2014-11-28 21:29:56 +01:00
parent 8840cf6040
commit f5b1056458
1 changed files with 2 additions and 2 deletions

View File

@ -227,7 +227,7 @@ func (this *Feed) notifyListeners() {
func (this *Feed) CanUpdate() bool {
// Make sure we are not within the specified cache-limit.
// This ensures we don't request data too often.
if SecondsTillUpdate() > 0 {
if this.SecondsTillUpdate() > 0 {
return false
}
@ -266,7 +266,7 @@ func (this *Feed) SecondsTillUpdate() int64 {
// Returns the duration needed to elapse before the feed should update.
func (this *Feed) TillUpdate() (time.Duration, error) {
return time.ParseDuration(fmt.Sprintf("%ds", SecondsTillUpdate()))
return time.ParseDuration(fmt.Sprintf("%ds", this.SecondsTillUpdate()))
}
func (this *Feed) buildFeed(doc *xmlx.Document) (err error) {