Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/620359dcc6ec0f4bc4ab10f9c1871d2f254b6884 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Updated BTN url to https

closes 
pull/4186/head
Taloth Saldono 4 years ago
parent 881bbb654b
commit 620359dcc6

@ -0,0 +1,15 @@
using FluentMigrator;
using Newtonsoft.Json.Linq;
using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration
{
[Migration(152)]
public class update_btn_url_to_https : NzbDroneMigrationBase
{
protected override void MainDbUpgrade()
{
Execute.Sql("UPDATE Indexers SET Settings = Replace(Settings, 'http://api.broadcasthe.net', 'https://api.broadcasthe.net') WHERE Implementation = 'BroadcastheNet';");
}
}
}

@ -21,7 +21,7 @@ namespace NzbDrone.Core.Indexers.BroadcastheNet
public BroadcastheNetSettings()
{
BaseUrl = "http://api.broadcasthe.net/";
BaseUrl = "https://api.broadcasthe.net/";
MinimumSeeders = IndexerDefaults.MINIMUM_SEEDERS;
}

Loading…
Cancel
Save