mirror of https://github.com/Radarr/Radarr
Fixed: nzb.su URL changed to api.nzb.su
This commit is contained in:
parent
0a5ed41270
commit
87f591dfbd
|
@ -253,5 +253,22 @@ namespace NzbDrone.Core.Test.Download
|
||||||
|
|
||||||
VerifyNoFailedDownloads();
|
VerifyNoFailedDownloads();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void should_not_process_if_failed_due_to_lack_of_disk_space()
|
||||||
|
{
|
||||||
|
var history = Builder<History.History>.CreateListOfSize(1)
|
||||||
|
.Build()
|
||||||
|
.ToList();
|
||||||
|
|
||||||
|
GivenGrabbedHistory(history);
|
||||||
|
GivenFailedDownloadClientHistory();
|
||||||
|
|
||||||
|
_failed.First().Message = "Unpacking failed, write error or disk is full?";
|
||||||
|
|
||||||
|
Subject.Execute(new CheckForFailedDownloadCommand());
|
||||||
|
|
||||||
|
VerifyNoFailedDownloads();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
using FluentMigrator;
|
||||||
|
using NzbDrone.Core.Datastore.Migration.Framework;
|
||||||
|
|
||||||
|
namespace NzbDrone.Core.Datastore.Migration
|
||||||
|
{
|
||||||
|
[Migration(46)]
|
||||||
|
public class fix_nzb_su_url : NzbDroneMigrationBase
|
||||||
|
{
|
||||||
|
protected override void MainDbUpgrade()
|
||||||
|
{
|
||||||
|
Execute.Sql("UPDATE Indexers SET Settings = replace(Settings, '//nzb.su', '//api.nzb.su')" +
|
||||||
|
"WHERE Implementation = 'Newznab'" +
|
||||||
|
"AND Settings LIKE '%//nzb.su%'");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -191,6 +191,7 @@
|
||||||
<Compile Include="Datastore\Migration\044_fix_xbmc_episode_metadata.cs">
|
<Compile Include="Datastore\Migration\044_fix_xbmc_episode_metadata.cs">
|
||||||
<SubType>Code</SubType>
|
<SubType>Code</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
<Compile Include="Datastore\Migration\046_fix_nzb_su_url.cs" />
|
||||||
<Compile Include="Datastore\Migration\Framework\MigrationContext.cs" />
|
<Compile Include="Datastore\Migration\Framework\MigrationContext.cs" />
|
||||||
<Compile Include="Datastore\Migration\Framework\MigrationController.cs" />
|
<Compile Include="Datastore\Migration\Framework\MigrationController.cs" />
|
||||||
<Compile Include="Datastore\Migration\Framework\MigrationExtension.cs" />
|
<Compile Include="Datastore\Migration\Framework\MigrationExtension.cs" />
|
||||||
|
|
Loading…
Reference in New Issue