Limit imdbid to 8 digits.

This commit is contained in:
randrey
2020-04-18 18:18:48 -07:00
parent d7a71cee3c
commit 92f273cb0c
2 changed files with 3 additions and 3 deletions

View File

@@ -208,8 +208,8 @@ namespace MediaBrowser.XbmcMetadata.Parsers
protected void ParseProviderLinks(T item, string xml)
{
// Look for a match for the Regex pattern "tt" followed by 7 or more digits
var m = Regex.Match(xml, @"tt(\d{7,})", RegexOptions.IgnoreCase);
// Look for a match for the Regex pattern "tt" followed by 7 or 8 digits
var m = Regex.Match(xml, @"tt(\d{7,8})", RegexOptions.IgnoreCase);
if (m.Success)
{
item.SetProviderId(MetadataProviders.Imdb, m.Value);