def apply()

in app/com/gu/itunes/iTunesRssFeed.scala [42:50]


  def apply(resps: Seq[ItemResponse], adFree: Boolean = false, imageResizerSalt: Option[String]): Node Or Failed = {
    val tag = resps.headOption.flatMap(_.tag)
    tag match {
      case Some(t) =>
        val content = resps.flatMap(_.results.getOrElse(Nil)).toList
        toXml(t, appleExcessDownloadsWorkaround(content), adFree, imageResizerSalt)
      case None => Bad(Failed("tag not found", NotFound))
    }
  }