Fixed: Awesome HD website link updated (#5832)

This commit is contained in:
bakerboy448 2021-02-02 21:50:33 -06:00 committed by GitHub
parent 6d7fb3de25
commit 86c5f06c5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 24 additions and 8 deletions

View File

@ -4,7 +4,7 @@
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
<meta xmlns="http://pipes.yahoo.com" name="pipes" content="noprocess" />
<title>TV Show Torrents :: Awesome-HD</title>
<link>https://awesome-hd.net/</link>
<link>https://awesome-hd.club/</link>
<description>RSS feed for all new tv show uploads.</description>
<language>en-us</language>
<lastBuildDate>Wed, 20 May 2015 07:06:12 +0000</lastBuildDate>
@ -21,9 +21,9 @@ After a group of people, who meet online, discover a bizarre graphic novel which
]]>
</description>
<pubDate>Tue, 19 May 2015 22:03:37 +0000</pubDate>
<link>https://awesome-hd.net/torrents.php?action=download&amp;authkey=redacted&amp;torrent_pass=redacted&amp;id=30689</link>
<guid>https://awesome-hd.net/torrents.php?action=download&amp;authkey=redacted&amp;torrent_pass=redacted&amp;id=30689</guid>
<comments>https://awesome-hd.net/torrents.php?id=15436</comments>
<link>https://awesome-hd.club/torrents.php?action=download&amp;authkey=redacted&amp;torrent_pass=redacted&amp;id=30689</link>
<guid>https://awesome-hd.club/torrents.php?action=download&amp;authkey=redacted&amp;torrent_pass=redacted&amp;id=30689</guid>
<comments>https://awesome-hd.club/torrents.php?id=15436</comments>
<dc:creator>tehlarsie</dc:creator>
</item>
<item>
@ -36,9 +36,9 @@ A brilliant and charismatic, yet psychotic serial killer communicates with other
]]>
</description>
<pubDate>Sun, 17 May 2015 18:21:15 +0000</pubDate>
<link>https://awesome-hd.net/torrents.php?action=download&amp;authkey=redacted&amp;torrent_pass=redacted&amp;id=30655</link>
<guid>https://awesome-hd.net/torrents.php?action=download&amp;authkey=redacted&amp;torrent_pass=redacted&amp;id=30655</guid>
<comments>https://awesome-hd.net/torrents.php?id=15428</comments>
<link>https://awesome-hd.club/torrents.php?action=download&amp;authkey=redacted&amp;torrent_pass=redacted&amp;id=30655</link>
<guid>https://awesome-hd.club/torrents.php?action=download&amp;authkey=redacted&amp;torrent_pass=redacted&amp;id=30655</guid>
<comments>https://awesome-hd.club/torrents.php?id=15428</comments>
<dc:creator>Charlesvain</dc:creator>
</item>
</channel>

View File

@ -0,0 +1,16 @@
using FluentMigrator;
using Newtonsoft.Json.Linq;
using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration
{
[Migration(190)]
public class update_awesome_hd_link : NzbDroneMigrationBase
{
protected override void MainDbUpgrade()
{
Execute.Sql("UPDATE Indexers SET Settings = Replace(Settings, 'https://awesome-hd.net', 'https://awesome-hd.club') WHERE Implementation = 'AwesomeHD';");
Execute.Sql("UPDATE Indexers SET Settings = Replace(Settings, 'https://awesome-hd.me', 'https://awesome-hd.club') WHERE Implementation = 'AwesomeHD';");
}
}
}

View File

@ -24,7 +24,7 @@ namespace NzbDrone.Core.Indexers.AwesomeHD
public AwesomeHDSettings()
{
BaseUrl = "https://awesome-hd.me";
BaseUrl = "https://awesome-hd.club";
MinimumSeeders = 0;
MultiLanguages = new List<int>();
RequiredFlags = new List<int>();