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/259d811b954c2159cb63292ff8eb24fbd2392d3d/MediaBrowser.Model/IO/FileSystemEntryInfo.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/IO/FileSystemEntryInfo.cs

40 lines
1.1 KiB

6 years ago
namespace MediaBrowser.Model.IO
{
/// <summary>
/// Class FileSystemEntryInfo.
6 years ago
/// </summary>
public class FileSystemEntryInfo
{
/// <summary>
/// Initializes a new instance of the <see cref="FileSystemEntryInfo" /> class.
/// </summary>
/// <param name="name">The filename.</param>
/// <param name="path">The file path.</param>
/// <param name="type">The file type.</param>
public FileSystemEntryInfo(string name, string path, FileSystemEntryType type)
{
Name = name;
Path = path;
Type = type;
}
/// <summary>
/// Gets the name.
6 years ago
/// </summary>
/// <value>The name.</value>
public string Name { get; }
6 years ago
/// <summary>
/// Gets the path.
6 years ago
/// </summary>
/// <value>The path.</value>
public string Path { get; }
6 years ago
/// <summary>
/// Gets the type.
6 years ago
/// </summary>
/// <value>The type.</value>
public FileSystemEntryType Type { get; }
6 years ago
}
}