Small updates including assembly version

This commit is contained in:
tidusjar 2016-03-01 15:18:01 +00:00
parent 98d143c9b2
commit ced6d989c9
8 changed files with 76 additions and 30 deletions

View file

@ -57,13 +57,14 @@ namespace RequestPlex.Core
model = new RequestedModel
{
Tmdbid = tmdbid,
Tmdbid = movieInfo.Id,
Type = type,
Overview = movieInfo.Overview,
ImdbId = movieInfo.ImdbId,
PosterPath = "http://image.tmdb.org/t/p/w150/" + movieInfo.PosterPath,
Title = movieInfo.Title,
ReleaseDate = movieInfo.ReleaseDate ?? DateTime.MinValue
ReleaseDate = movieInfo.ReleaseDate ?? DateTime.MinValue,
Status = movieInfo.Status
};
}
else
@ -72,13 +73,13 @@ namespace RequestPlex.Core
model = new RequestedModel
{
Tmdbid = tmdbid,
Tmdbid = showInfo.Id,
Type = type,
Overview = showInfo.Overview,
//ImdbId = showInfo.ImdbId, //TODO where's the IMDBId?
PosterPath = "http://image.tmdb.org/t/p/w150/" + showInfo.PosterPath,
Title = showInfo.Name,
ReleaseDate = showInfo.FirstAirDate ?? DateTime.MinValue
ReleaseDate = showInfo.FirstAirDate ?? DateTime.MinValue,
Status = showInfo.Status
};
}
var db = new DbConfiguration(new SqliteFactory());