|
|
|
@ -57,7 +57,7 @@ namespace NzbDrone.Core.Indexers.BroadcastheNet
|
|
|
|
|
var torrentInfo = new TorrentInfo();
|
|
|
|
|
|
|
|
|
|
torrentInfo.Guid = string.Format("BTN-{0}", torrent.TorrentID);
|
|
|
|
|
torrentInfo.Title = torrent.ReleaseName;
|
|
|
|
|
torrentInfo.Title = CleanReleaseName(torrent.ReleaseName);
|
|
|
|
|
torrentInfo.Size = torrent.Size;
|
|
|
|
|
torrentInfo.DownloadUrl = RegexProtocol.Replace(torrent.DownloadURL, protocol);
|
|
|
|
|
torrentInfo.InfoUrl = string.Format("{0}//broadcasthe.net/torrents.php?id={1}&torrentid={2}", protocol, torrent.GroupID, torrent.TorrentID);
|
|
|
|
@ -87,5 +87,12 @@ namespace NzbDrone.Core.Indexers.BroadcastheNet
|
|
|
|
|
|
|
|
|
|
return results;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string CleanReleaseName(string releaseName)
|
|
|
|
|
{
|
|
|
|
|
releaseName = releaseName.Replace("\\", "");
|
|
|
|
|
|
|
|
|
|
return releaseName;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|