diff --git a/ytsync.go b/ytsync.go index 3ca763d..a95e64a 100644 --- a/ytsync.go +++ b/ytsync.go @@ -424,6 +424,10 @@ func (s *Sync) processVideo(v video) (err error) { return nil } + if v.PlaylistPosition() > 3000 { + log.Println(v.ID() + " is old: skipping") + return nil + } err = v.Sync(s.daemon, s.claimAddress, publishAmount, s.LbryChannelName) if err != nil { return err