Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/blame/commit/921bd804744bd8419c7e1453583c45150056c6d6/MediaBrowser.Controller/Library/LibraryManagerExtensions.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
using System;
|
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Library
|
|
|
|
|
{
|
|
|
|
|
public static class LibraryManagerExtensions
|
|
|
|
|
{
|
|
|
|
|
public static BaseItem GetItemById(this ILibraryManager manager, string id)
|
|
|
|
|
{
|
|
|
|
|
return manager.GetItemById(new Guid(id));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|