# File lib/dragonfly/job/fetch_url.rb, line 42
      def apply
        if data_uri?
          update_from_data_uri
        else
          response = get_following_redirects(url)
          job.content.update(response.body || "", 'name' => filename, 'mime_type' => response.content_type)
        end
      end