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

15 lines
356 B

using MediaBrowser.Model.Sync;
namespace MediaBrowser.Model.Dto
{
public interface IHasSyncInfo
{
string Id { get; }
bool? SupportsSync { get; set; }
bool? HasSyncJob { get; set; }
double? SyncPercent { get; set; }
bool? IsSynced { get; set; }
SyncJobItemStatus? SyncStatus { get; set; }
}
}