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/19b8bcaec43835c698a35975a748c2129c1413aa/MediaBrowser.Controller/Providers/IDirectoryService.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/Providers/IDirectoryService.cs

21 lines
535 B

#pragma warning disable CA1002, CA1819, CS1591
6 years ago
using System.Collections.Generic;
using MediaBrowser.Model.IO;
namespace MediaBrowser.Controller.Providers
{
public interface IDirectoryService
{
FileSystemMetadata[] GetFileSystemEntries(string path);
6 years ago
List<FileSystemMetadata> GetFiles(string path);
4 years ago
FileSystemMetadata? GetFile(string path);
6 years ago
IReadOnlyList<string> GetFilePaths(string path);
IReadOnlyList<string> GetFilePaths(string path, bool clearCache, bool sort = false);
6 years ago
}
}