/**
  * @param $showId string show id
  * @param $season string season number
  * @param $langId string lang id
  *
  * @return string
  */
 public function getAddictedShowAjaxUrl($showId, $season, $langId)
 {
     $query = $this->config->getAddictedShowAjaxUriQuery();
     $query = str_replace('[SHOW]', (int) $showId, $query);
     $query = str_replace('[SEASON]', (int) $season, $query);
     $query = str_replace('[LANGS]', (int) $langId, $query);
     return sprintf('%s/%s?%s', $this->getAddictedUrl(), $this->config->getAddictedShowAjaxUri(), $query);
 }