Fixed the issue where when enabling "Do not display available content" and you have it all, the posters appear large.

pull/4016/head
tidusjar 4 years ago
parent 216c59dfc1
commit af58bbbe13

@ -70,25 +70,27 @@ export class CarouselListComponent implements OnInit {
this.discoverOptions = DiscoverOption[DiscoverOption[localDiscoverOptions]];
}
var moviePromise: Promise<void>;
var tvPromise: Promise<void>;
switch (this.discoverOptions) {
case DiscoverOption.Combined:
moviePromise = this.loadMovies();
tvPromise = this.loadTv();
break;
case DiscoverOption.Movie:
moviePromise = this.loadMovies();
break;
case DiscoverOption.Tv:
tvPromise = this.loadTv();
break;
}
while(this.discoverResults.length < 14) {
var moviePromise: Promise<void>;
var tvPromise: Promise<void>;
switch (this.discoverOptions) {
case DiscoverOption.Combined:
moviePromise = this.loadMovies();
tvPromise = this.loadTv();
break;
case DiscoverOption.Movie:
moviePromise = this.loadMovies();
break;
case DiscoverOption.Tv:
tvPromise = this.loadTv();
break;
}
await moviePromise;
await tvPromise;
await moviePromise;
await tvPromise;
this.createInitialModel();
this.createInitialModel();
}
}
public async toggleChanged(event: MatButtonToggleChange) {

Loading…
Cancel
Save