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/e64aaebbacfa7a720c99ca2ab1aa11f7fcd63868/MediaBrowser.Model/Playlists/PlaylistCreationRequest.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/Playlists/PlaylistCreationRequest.cs

21 lines
397 B

using System;
6 years ago
namespace MediaBrowser.Model.Playlists
{
public class PlaylistCreationRequest
{
6 years ago
public string Name { get; set; }
6 years ago
public Guid[] ItemIdList { get; set; }
public string MediaType { get; set; }
public Guid UserId { get; set; }
public PlaylistCreationRequest()
{
ItemIdList = Array.Empty<Guid>();
}
}
}