mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-11 07:46:05 -07:00
Small updates including assembly version
This commit is contained in:
parent
98d143c9b2
commit
ced6d989c9
8 changed files with 76 additions and 30 deletions
|
@ -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());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue