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

19 lines
404 B

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