Compare commits

...

1 Commits

Author SHA1 Message Date
theguymadmax
86804686a4 Allow tmdb as an alias for the tmdbid provider id 2026-03-19 02:20:02 -04:00

View File

@@ -70,6 +70,12 @@ namespace Emby.Server.Implementations.Library
return match ? imdbId.ToString() : null;
}
// Allow tmdb as an alias for tmdbid
if (attribute.Equals("tmdbid", StringComparison.OrdinalIgnoreCase))
{
return str.GetAttributeValue("tmdb");
}
return null;
}