should not execute feed if version.url==""
parent
375fc1000a
commit
18ac13fd57
|
|
@ -28,7 +28,7 @@ var (
|
|||
)
|
||||
|
||||
func (feed Feed) ShouldExecute() (bool, error) {
|
||||
if !feed.Entry.Deleted.IsZero() {
|
||||
if !feed.Entry.Deleted.IsZero() || feed.Version.URL == "" {
|
||||
return false, nil
|
||||
}
|
||||
next, err := feed.Next()
|
||||
|
|
|
|||
Loading…
Reference in New Issue