Fixed the issue with firefox #1544

This commit is contained in:
tidusjar 2017-10-26 21:07:44 +01:00
parent 8ac5bf7829
commit 00b1873dac
2 changed files with 2 additions and 2 deletions

View file

@ -38,7 +38,7 @@ namespace Ombi.Notifications
Overview = req.ParentRequest.Overview;
Year = req.ParentRequest.ReleaseDate.Year.ToString();
PosterImage = req.RequestType == RequestType.Movie ?
$"https://image.tmdb.org/t/p/w300/{req.ParentRequest.PosterPath}" : req.ParentRequest.PosterPath;
$"https://image.tmdb.org/t/p/w300{req.ParentRequest.PosterPath}" : req.ParentRequest.PosterPath;
// DO Episode and Season Lists
}