core: rename banner field to poster #10092 (#10134)

This commit is contained in:
Diego Heras
2020-11-08 00:43:33 +01:00
committed by GitHub
parent 94dfb9b8a7
commit c5dd37b836
212 changed files with 287 additions and 288 deletions

View File

@@ -187,7 +187,7 @@ namespace Jackett.Common.Indexers
if (!string.IsNullOrWhiteSpace(row.firstpic.ToString()))
{
release.BannerUrl = (row.firstpic);
release.Poster = (row.firstpic);
}
@@ -202,7 +202,7 @@ namespace Jackett.Common.Indexers
descriptions.Add("Rating: " + row.rating);
//descriptions.Add("Plot: " + row.plot);
release.BannerUrl = new Uri(SiteLink + "img/imdb/" + row.imdbid2 + ".jpg");
release.Poster = new Uri(SiteLink + "img/imdb/" + row.imdbid2 + ".jpg");
}
if ((int)row.p2p == 1)