Api bugfixing #19

Merged
KevinMidboe merged 10 commits from api_bugfixing into master 2017-09-02 19:15:37 +00:00
Showing only changes of commit a4fe5cc635 - Show all commits

View File

@@ -1,17 +1,19 @@
class Movie {
constructor(title, year) {
constructor(title, year, type) {
this.id = undefined;
this.title = title;
this.year = year;
this.type = type;
this.release_date = undefined;
this.library = undefined;
this.type = undefined;
this.summary = undefined;
this.rating = undefined;
this.poster = undefined;
this.background = undefined;
this.genre = undefined;
this.mediaInfo = undefined;
this.matchedInPlex = false;
this.childTitle = undefined;
this.season = undefined;
this.episode = undefined;
}
}