public void UpdateUrls(TMDbSeasonInfo info, int posterWidth, int stillWidth)
        {
            info.PosterUrl = this.GetUrl(info.PosterPath, ImageType.Poster, posterWidth);

            if (info.Episodes != null)
            {
                foreach (var ep in info.Episodes)
                {
                    ep.StillUrl = this.GetUrl(ep.StillPath, ImageType.Still, stillWidth);
                }
            }
        }
        public void UpdateUrls(TMDbSeasonInfo info, int posterWidth, int stillWidth)
        {
            info.PosterUrl = this.GetUrl(info.PosterPath, ImageType.Poster, posterWidth);

            if (info.Episodes != null)
            {
                foreach (var ep in info.Episodes)
                {
                    ep.StillUrl = this.GetUrl(ep.StillPath, ImageType.Still, stillWidth);
                }
            }
        }