fix wrong type for ConvertDbLinkToId()

This commit is contained in:
flb 2024-02-09 20:59:00 +01:00
parent 2b1838517c
commit 467ff799fc
1 changed files with 1 additions and 1 deletions

View File

@ -407,7 +407,7 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
}
}
private List<Movie> ConvertDbLinkToId(string title)
private string ConvertDbLinkToId(string title)
{
var match = ImdbIdRegex.Match(title);
if (match.Success)