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/e41e832495765ec057ed5cc86eb8b3019e3f71c8/MediaBrowser.Controller/Library/IMetadataFileSaver.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/Library/IMetadataFileSaver.cs

22 lines
491 B

#pragma warning disable CS1591
using MediaBrowser.Controller.Entities;
6 years ago
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(BaseItem item);
}
public interface IConfigurableProvider
{
bool IsEnabled { get; }
}
}