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/0963717643bf01b8dd28e1609567ec096b5bd45a/MediaBrowser.Model/Sync/SyncDialogOptions.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/Sync/SyncDialogOptions.cs

37 lines
1.1 KiB

10 years ago
using System.Collections.Generic;
namespace MediaBrowser.Model.Sync
{
public class SyncDialogOptions
{
/// <summary>
/// Gets or sets the targets.
/// </summary>
/// <value>The targets.</value>
public List<SyncTarget> Targets { get; set; }
/// <summary>
/// Gets or sets the options.
/// </summary>
/// <value>The options.</value>
10 years ago
public List<SyncJobOption> Options { get; set; }
/// <summary>
/// Gets or sets the quality options.
/// </summary>
/// <value>The quality options.</value>
public List<SyncQualityOption> QualityOptions { get; set; }
/// <summary>
/// Gets or sets the profile options.
/// </summary>
/// <value>The profile options.</value>
10 years ago
public List<SyncProfileOption> ProfileOptions { get; set; }
10 years ago
public SyncDialogOptions()
{
Targets = new List<SyncTarget>();
10 years ago
Options = new List<SyncJobOption>();
QualityOptions = new List<SyncQualityOption>();
10 years ago
ProfileOptions = new List<SyncProfileOption>();
10 years ago
}
}
}