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

39 lines
909 B

#pragma warning disable CS1591
6 years ago
using System;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Model.Entities;
namespace MediaBrowser.Controller.Providers
{
public class ItemInfo
{
public ItemInfo(BaseItem item)
{
Path = item.Path;
ContainingFolderPath = item.ContainingFolderPath;
IsInMixedFolder = item.IsInMixedFolder;
if (item is Video video)
6 years ago
{
VideoType = video.VideoType;
IsPlaceHolder = video.IsPlaceHolder;
}
ItemType = item.GetType();
}
public Type ItemType { get; set; }
6 years ago
public string Path { get; set; }
6 years ago
public string ContainingFolderPath { get; set; }
6 years ago
public VideoType VideoType { get; set; }
6 years ago
public bool IsInMixedFolder { get; set; }
6 years ago
public bool IsPlaceHolder { get; set; }
}
}