Torrent download bugfix

This commit is contained in:
KZ
2015-09-21 20:54:24 +01:00
parent 353dadba0b
commit 66b8448186

View File

@@ -83,6 +83,11 @@ namespace Jackett.Indexers
public Uri UncleanLink(Uri link)
{
if (string.IsNullOrWhiteSpace(downloadUrlBase))
{
return link;
}
if (link.ToString().StartsWith(downloadUrlBase))
{
return link;