mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-10 23:33:38 -07:00
Fixed: dognzb API URL
This commit is contained in:
parent
b89d9c22b9
commit
00db083adf
1 changed files with 16 additions and 0 deletions
16
src/NzbDrone.Core/Datastore/Migration/049_fix_dognzb_url.cs
Normal file
16
src/NzbDrone.Core/Datastore/Migration/049_fix_dognzb_url.cs
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
using FluentMigrator;
|
||||||
|
using NzbDrone.Core.Datastore.Migration.Framework;
|
||||||
|
|
||||||
|
namespace NzbDrone.Core.Datastore.Migration
|
||||||
|
{
|
||||||
|
[Migration(49)]
|
||||||
|
public class fix_dognzb_url : NzbDroneMigrationBase
|
||||||
|
{
|
||||||
|
protected override void MainDbUpgrade()
|
||||||
|
{
|
||||||
|
Execute.Sql("UPDATE Indexers SET Settings = replace(Settings, '//dognzb.cr', '//api.dognzb.cr')" +
|
||||||
|
"WHERE Implementation = 'Newznab'" +
|
||||||
|
"AND Settings LIKE '%//dognzb.cr%'");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue