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/668e168c4710d8181e04ba57b7e3a690a2d2936a/MediaBrowser.Controller/Sync/IHasDynamicAccess.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/Sync/IHasDynamicAccess.cs

21 lines
659 B

#pragma warning disable CS1591
using System.Threading;
6 years ago
using System.Threading.Tasks;
using MediaBrowser.Model.Sync;
6 years ago
namespace MediaBrowser.Controller.Sync
{
public interface IHasDynamicAccess
{
/// <summary>
/// Gets the synced file information.
/// </summary>
/// <param name="id">The identifier.</param>
/// <param name="target">The target.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task&lt;SyncedFileInfo&gt;.</returns>
Task<SyncedFileInfo> GetSyncedFileInfo(string id, SyncTarget target, CancellationToken cancellationToken);
}
}