mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-07-07 18:24:14 -04:00
Adding people to movie's details
This commit is contained in:
parent
334d79bb74
commit
1c5b261b5b
@ -47,6 +47,8 @@ export class ShowDetailsComponent implements OnInit
|
||||
this.show = data.show;
|
||||
this.title.setTitle(this.show.title + " - Kyoo");
|
||||
|
||||
this.peopleService.getFromShow(this.show.slug).subscribe(x => this.people = x);
|
||||
|
||||
if (this.show.isMovie)
|
||||
return;
|
||||
|
||||
@ -59,9 +61,7 @@ export class ShowDetailsComponent implements OnInit
|
||||
this.getEpisodes(1);
|
||||
}
|
||||
});
|
||||
this.getEpisodes(this.season);
|
||||
this.peopleService.getFromShow(this.show.slug).subscribe(x => this.people = x);
|
||||
});
|
||||
this.getEpisodes(this.season);});
|
||||
}
|
||||
|
||||
ngOnInit()
|
||||
|
Loading…
x
Reference in New Issue
Block a user