Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/src/commit/6e1ba4e3cc88868304bf8c08baefb70b79c8838d/MediaBrowser.Model/Dto/IHasSyncInfo.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
using MediaBrowser.Model.Sync;
|
|
|
|
namespace MediaBrowser.Model.Dto
|
|
{
|
|
public interface IHasSyncInfo
|
|
{
|
|
string Id { get; }
|
|
bool? SupportsSync { get; set; }
|
|
bool? HasSyncJob { get; set; }
|
|
bool? IsSynced { get; set; }
|
|
SyncJobItemStatus? SyncStatus { get; set; }
|
|
}
|
|
}
|