Merge pull request #4323 from bernarden/bug/4263-remove-overwrite-of-requested-field-for-discover-movie-card

Removes overwrite of requested field with undefined.
This commit is contained in:
Jamie 2021-10-05 12:04:11 +01:00 committed by GitHub
commit 8c7d816eec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -167,7 +167,6 @@ export class DiscoverCardComponent implements OnInit {
this.result.url = "http://www.imdb.com/title/" + updated.imdbId + "/";
this.result.available = updated.available;
this.result.requested = updated.requested;
this.result.requested = updated.requestProcessing;
this.result.rating = updated.voteAverage;
this.result.overview = updated.overview;
this.result.imdbid = updated.imdbId;