Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/src/commit/abfb8739113b16c7d326989113ed1acfa494bb4d/Old/Ombi.Core/IPlexReadOnlyDatabase.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Ombi/Old/Ombi.Core/IPlexReadOnlyDatabase.cs

11 lines
238 B

using System;
using System.Collections.Generic;
using Ombi.Store.Models.Plex;
namespace Ombi.Core
{
public interface IPlexReadOnlyDatabase
{
IEnumerable<MetadataItems> GetItemsAddedAfterDate(DateTime dateTime);
}
}