mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-04-24 05:47:22 -04:00
parent
cc2f50544b
commit
eba5413250
1 changed files with 2 additions and 2 deletions
|
@ -59,7 +59,7 @@ namespace NzbDrone.Core.IndexerSearch
|
|||
|
||||
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 @@ namespace NzbDrone.Core.IndexerSearch
|
|||
|
||||
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…
Add table
Add a link
Reference in a new issue