Allow tmdb as an alias for the tmdbid provider id

This commit is contained in:
theguymadmax
2026-03-19 02:20:02 -04:00
parent dc4d3639e0
commit 86804686a4

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;
}