class DownloadTV::MyEpisodes

def load_cookie

def load_cookie
  if File.exist? @cookie_path
    @agent.cookie_jar.load @cookie_path
    return @agent if logged_in?
    puts 'The cookie is invalid/has expired.'
  else
    puts 'Cookie file not found'
  end
  login
end