diff --git a/src/Ombi/ClientApp/src/app/media-details/components/movie/panels/movie-information-panel.component.ts b/src/Ombi/ClientApp/src/app/media-details/components/movie/panels/movie-information-panel.component.ts index 334dee65e..c11a0f61c 100644 --- a/src/Ombi/ClientApp/src/app/media-details/components/movie/panels/movie-information-panel.component.ts +++ b/src/Ombi/ClientApp/src/app/media-details/components/movie/panels/movie-information-panel.component.ts @@ -28,8 +28,8 @@ export class MovieInformationPanelComponent implements OnInit { if (this.internalBaseUrl.length > 1) { this.baseUrl = this.internalBaseUrl; } - this.searchService.getRottenMovieRatings(this.movie.title, +this.movie.releaseDate.toString().substring(0,4)) - .subscribe(x => this.ratings = x); + // this.searchService.getRottenMovieRatings(this.movie.title, +this.movie.releaseDate.toString().substring(0,4)) + // .subscribe(x => this.ratings = x); this.searchService.getMovieStreams(this.movie.id).subscribe(x => this.streams = x); } diff --git a/src/Ombi/ClientApp/src/app/media-details/components/tv/panels/tv-information-panel/tv-information-panel.component.ts b/src/Ombi/ClientApp/src/app/media-details/components/tv/panels/tv-information-panel/tv-information-panel.component.ts index 701aa26e9..d5ba5cbd6 100644 --- a/src/Ombi/ClientApp/src/app/media-details/components/tv/panels/tv-information-panel/tv-information-panel.component.ts +++ b/src/Ombi/ClientApp/src/app/media-details/components/tv/panels/tv-information-panel/tv-information-panel.component.ts @@ -31,8 +31,8 @@ export class TvInformationPanelComponent implements OnInit { if (this.internalBaseUrl.length > 1) { this.baseUrl = this.internalBaseUrl; } - this.searchService.getRottenTvRatings(this.tv.title, +this.tv.firstAired.toString().substring(0,4)) - .subscribe(x => this.ratings = x); + // this.searchService.getRottenTvRatings(this.tv.title, +this.tv.firstAired.toString().substring(0,4)) + // .subscribe(x => this.ratings = x); this.searchService.getTvStreams(+this.tv.id ).subscribe(x => this.streams = x); this.tv.seasonRequests.forEach(season => {