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/893bc7400bc2dadf2a789ba439d9a469c13b05df/MediaBrowser.Controller/MediaEncoding/MediaInfoRequest.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/MediaEncoding/MediaInfoRequest.cs

26 lines
597 B

using System;
using MediaBrowser.Model.Dlna;
6 years ago
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.IO;
6 years ago
namespace MediaBrowser.Controller.MediaEncoding
{
public class MediaInfoRequest
{
public MediaSourceInfo MediaSource { get; set; }
6 years ago
public bool ExtractChapters { get; set; }
6 years ago
public DlnaProfileType MediaType { get; set; }
6 years ago
public IIsoMount MountedIso { get; set; }
6 years ago
public string[] PlayableStreamFileNames { get; set; }
public MediaInfoRequest()
{
6 years ago
PlayableStreamFileNames = Array.Empty<string>();
6 years ago
}
}
}