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

19 lines
465 B

using MediaBrowser.Controller.Entities;
namespace MediaBrowser.Controller.Library
{
public interface IMetadataFileSaver : IMetadataSaver
{
/// <summary>
/// Gets the save path.
/// </summary>
/// <param name="item">The item.</param>
/// <returns>System.String.</returns>
string GetSavePath(IHasMetadata item);
}
public interface IConfigurableProvider
{
bool IsEnabled { get; }
}
}