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

Make sure ReadToDescendant was successful,

pull/6774/head
cvium 3 years ago
parent 2c42d75288
commit c0bab5c173

@ -785,7 +785,11 @@ namespace MediaBrowser.XbmcMetadata.Parsers
case "fanart":
{
var subtree = reader.ReadSubtree();
subtree.ReadToDescendant("thumb");
if (!subtree.ReadToDescendant("thumb"))
{
break;
}
FetchThumbNode(subtree, itemResult);
break;
}

Loading…
Cancel
Save