mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -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
|
@ -48,7 +48,8 @@ function buildMovieRequestContext(result) {
|
|||
title: result.title,
|
||||
overview: result.overview,
|
||||
year: year,
|
||||
type: "movie"
|
||||
type: "movie",
|
||||
status: result.status
|
||||
};
|
||||
|
||||
return context;
|
||||
|
@ -62,10 +63,9 @@ function buildTvShowRequestContext(result) {
|
|||
id: result.tmdbid,
|
||||
title: result.name,
|
||||
overview: result.overview,
|
||||
voteCount: result.voteCount,
|
||||
voteAverage: result.voteAverage,
|
||||
year: year,
|
||||
type: "tv"
|
||||
type: "tv",
|
||||
status: result.status
|
||||
};
|
||||
return context;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue