Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/9cee32d730ca813dff9ee4191a75bba2b40895f7 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Merge pull request from Bond-009/seriesimdb

Check for Imdb id for series
pull/9811/head
Claus Vium 2 years ago committed by GitHub
commit 9cee32d730
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -184,6 +184,12 @@ namespace Emby.Server.Implementations.Library.Resolvers.TV
{
var justName = Path.GetFileName(path.AsSpan());
var imdbId = justName.GetAttributeValue("imdbid");
if (!string.IsNullOrEmpty(imdbId))
{
item.SetProviderId(MetadataProvider.Imdb, imdbId);
}
var tvdbId = justName.GetAttributeValue("tvdbid");
if (!string.IsNullOrEmpty(tvdbId))
{

Loading…
Cancel
Save