class DownloadTV::Downloader

def check_date(offset)

Or nil if the date is today
Returns the date from which to check for shows
#
def check_date(offset)
  last = @config.content[:date]
  last -= offset
  last if last != Date.today
end