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/9ef57bba281bfd3e20bf88ae3d93014b8b270898/src/Ombi.Api.Discord/IDiscordApi.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Ombi/src/Ombi.Api.Discord/IDiscordApi.cs

10 lines
230 B

using System.Threading.Tasks;
using Ombi.Api.Discord.Models;
namespace Ombi.Api.Discord
{
public interface IDiscordApi
{
Task SendMessage(DiscordWebhookBody body, string webhookId, string webhookToken);
}
}