Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/blame/commit/e55cbd088193ebe0d88884bdb877f594fd77661b/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

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