Disable Nyaa forcibly.
This commit is contained in:
parent
68290b0385
commit
b03f434329
|
@ -0,0 +1,14 @@
|
||||||
|
using FluentMigrator;
|
||||||
|
using NzbDrone.Core.Datastore.Migration.Framework;
|
||||||
|
|
||||||
|
namespace NzbDrone.Core.Datastore.Migration
|
||||||
|
{
|
||||||
|
[Migration(116)]
|
||||||
|
public class disable_nyaa : NzbDroneMigrationBase
|
||||||
|
{
|
||||||
|
protected override void MainDbUpgrade()
|
||||||
|
{
|
||||||
|
Execute.Sql("UPDATE Indexers SET EnableRss = 0, EnableSearch = 0, Settings = Replace(Settings, 'https://nyaa.se', '') WHERE Implementation = 'Nyaa' AND Settings LIKE '%nyaa.se%';");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -19,7 +19,7 @@ namespace NzbDrone.Core.Indexers.Nyaa
|
||||||
|
|
||||||
public NyaaSettings()
|
public NyaaSettings()
|
||||||
{
|
{
|
||||||
BaseUrl = "https://www.nyaa.se";
|
BaseUrl = "";
|
||||||
AdditionalParameters = "&cats=1_37&filter=1";
|
AdditionalParameters = "&cats=1_37&filter=1";
|
||||||
MinimumSeeders = IndexerDefaults.MINIMUM_SEEDERS;
|
MinimumSeeders = IndexerDefaults.MINIMUM_SEEDERS;
|
||||||
}
|
}
|
||||||
|
|
|
@ -249,6 +249,7 @@
|
||||||
<Compile Include="Datastore\Migration\068_add_release_restrictions.cs" />
|
<Compile Include="Datastore\Migration\068_add_release_restrictions.cs" />
|
||||||
<Compile Include="Datastore\Migration\069_quality_proper.cs" />
|
<Compile Include="Datastore\Migration\069_quality_proper.cs" />
|
||||||
<Compile Include="Datastore\Migration\070_delay_profile.cs" />
|
<Compile Include="Datastore\Migration\070_delay_profile.cs" />
|
||||||
|
<Compile Include="Datastore\Migration\116_disable_nyaa.cs" />
|
||||||
<Compile Include="Datastore\Migration\102_add_language_to_episodeFiles_history_and_blacklist.cs" />
|
<Compile Include="Datastore\Migration\102_add_language_to_episodeFiles_history_and_blacklist.cs" />
|
||||||
<Compile Include="Datastore\Migration\113_consolidate_indexer_baseurl.cs" />
|
<Compile Include="Datastore\Migration\113_consolidate_indexer_baseurl.cs" />
|
||||||
<Compile Include="Datastore\Migration\114_rename_indexer_status_id.cs" />
|
<Compile Include="Datastore\Migration\114_rename_indexer_status_id.cs" />
|
||||||
|
|
Loading…
Reference in New Issue