Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/443c79b0cae49ec43d8d6c52e42f0c6f2e0c9d69 You should set ROOT_URL correctly, otherwise the web may not work correctly.
Note: This requires you to press the update database again before using the newsletter!
pull/2183/head
Jamie Rees 7 years ago
parent 703203ed5c
commit 443c79b0ca

@ -128,14 +128,14 @@ namespace Ombi.Schedule.Jobs.Ombi
return;
}
foreach (var emails in settings.ExternalEmails)
{
users.Add(new OmbiUser
{
UserName = emails,
Email = emails
});
}
//foreach (var emails in settings.ExternalEmails)
//{
// users.Add(new OmbiUser
// {
// UserName = emails,
// Email = emails
// });
//}
var emailTasks = new List<Task>();
foreach (var user in users)
{

@ -17,6 +17,8 @@ namespace Ombi.Store.Migrations
name: "SeasonNumber",
table: "RecentlyAddedLog",
nullable: true);
migrationBuilder.Sql("DELETE FROM RecentlyAddedLog");
}
protected override void Down(MigrationBuilder migrationBuilder)

Loading…
Cancel
Save