Merge pull request #106 from onesvat/master

Add plot field when fetching data from omdb
This commit is contained in:
Moritz Jung 2024-05-27 22:20:18 +02:00 committed by GitHub
commit 03cba2d8b2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 0 deletions

View file

@ -12,6 +12,7 @@ export class MovieModel extends MediaTypeModel {
onlineRating: number;
actors: string[];
image: string;
plot: string;
released: boolean;
streamingServices: string[];
@ -35,6 +36,7 @@ export class MovieModel extends MediaTypeModel {
this.onlineRating = undefined;
this.actors = undefined;
this.image = undefined;
this.plot = undefined;
this.released = undefined;
this.streamingServices = undefined;

View file

@ -21,6 +21,7 @@ export class SeriesModel extends MediaTypeModel {
onlineRating: number;
actors: string[];
image: string;
plot: string;
released: boolean;
streamingServices: string[];
@ -46,6 +47,7 @@ export class SeriesModel extends MediaTypeModel {
this.onlineRating = undefined;
this.actors = undefined;
this.image = undefined;
this.plot = undefined;
this.released = undefined;
this.streamingServices = undefined;