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/b32f15ab1e2b927a16bba85a500fdf55d88256c2/Emby.Server.Implementations/Library/Resolvers/VideoResolver.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.

17 lines
402 B

#pragma warning disable CS1591
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Library;
namespace Emby.Server.Implementations.Library.Resolvers
{
9 years ago
public class GenericVideoResolver<T> : BaseVideoResolver<T>
where T : Video, new()
9 years ago
{
public GenericVideoResolver(ILibraryManager libraryManager)
: base(libraryManager)
9 years ago
{
}
}
}