Added the new advanced search into the search page too.

This commit is contained in:
tidusjar 2016-06-09 22:27:36 +01:00
commit 89db8eb728
2 changed files with 19 additions and 4 deletions

View file

@ -114,7 +114,7 @@ namespace PlexRequests.Services.Jobs
matchResult = IsMovieAvailable(movies, r.Title, releaseDate, r.ImdbId);
break;
case RequestType.TvShow:
matchResult = IsTvShowAvailable(shows, r.Title, releaseDate, r.ProviderId.ToString());
matchResult = IsTvShowAvailable(shows, r.Title, releaseDate, r.TvDbId);
break;
case RequestType.Album:
matchResult = IsAlbumAvailable(albums, r.Title, r.ReleaseDate.Year.ToString(), r.ArtistName);