diff --git a/src/Prowlarr.Api.V1/Indexers/NewznabController.cs b/src/Prowlarr.Api.V1/Indexers/NewznabController.cs index 75680eaed..e76bae68a 100644 --- a/src/Prowlarr.Api.V1/Indexers/NewznabController.cs +++ b/src/Prowlarr.Api.V1/Indexers/NewznabController.cs @@ -52,6 +52,8 @@ namespace NzbDrone.Api.V1.Indexers throw new BadRequestException("Missing Function Parameter"); } + request.imdbid = request.imdbid.TrimStart('t'); + if (request.imdbid.IsNotNullOrWhiteSpace()) { if (!int.TryParse(request.imdbid, out var imdb) || imdb == 0)