mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-05-09 05:22:09 +02:00
parent
cc2f50544b
commit
eba5413250
1 changed files with 2 additions and 2 deletions
|
|
@ -59,7 +59,7 @@ private async Task<NewznabResults> MovieSearch(NewznabRequest request, List<int>
|
|||
|
||||
var imdbId = ParseUtil.GetImdbID(request.imdbid);
|
||||
|
||||
searchSpec.ImdbId = imdbId.HasValue ? imdbId.Value.ToString() : null;
|
||||
searchSpec.ImdbId = imdbId?.ToString("D7");
|
||||
searchSpec.TmdbId = request.tmdbid;
|
||||
searchSpec.TraktId = request.traktid;
|
||||
searchSpec.DoubanId = request.doubanid;
|
||||
|
|
@ -89,7 +89,7 @@ private async Task<NewznabResults> TvSearch(NewznabRequest request, List<int> in
|
|||
|
||||
var imdbId = ParseUtil.GetImdbID(request.imdbid);
|
||||
|
||||
searchSpec.ImdbId = imdbId.HasValue ? imdbId.Value.ToString() : null;
|
||||
searchSpec.ImdbId = imdbId?.ToString("D7");
|
||||
searchSpec.Season = request.season;
|
||||
searchSpec.Episode = request.ep;
|
||||
searchSpec.TvdbId = request.tvdbid;
|
||||
|
|
|
|||
Loading…
Reference in a new issue