diff --git a/src/NzbDrone.Core/Indexers/BroadcastheNet/BroadcastheNetParser.cs b/src/NzbDrone.Core/Indexers/BroadcastheNet/BroadcastheNetParser.cs index 9d126da54..2af7b6739 100644 --- a/src/NzbDrone.Core/Indexers/BroadcastheNet/BroadcastheNetParser.cs +++ b/src/NzbDrone.Core/Indexers/BroadcastheNet/BroadcastheNetParser.cs @@ -44,7 +44,7 @@ public IList ParseResponse(IndexerResponse indexerResponse) { throw new IndexerException(indexerResponse, "Indexer API call returned an error [{0}]", jsonResponse.Error); } - + if (jsonResponse.Result.Results == 0) { return results; @@ -57,7 +57,7 @@ public IList ParseResponse(IndexerResponse indexerResponse) 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); @@ -71,7 +71,7 @@ public IList ParseResponse(IndexerResponse indexerResponse) torrentInfo.TvRageId = torrent.TvrageID.Value; } torrentInfo.PublishDate = new DateTime(1970, 1, 1, 0, 0, 0, 0, DateTimeKind.Utc).ToUniversalTime().AddSeconds(torrent.Time); - //torrentInfo.MagnetUrl = + //torrentInfo.MagnetUrl = torrentInfo.InfoHash = torrent.InfoHash; torrentInfo.Seeders = torrent.Seeders; torrentInfo.Peers = torrent.Leechers + torrent.Seeders; @@ -87,5 +87,12 @@ public IList ParseResponse(IndexerResponse indexerResponse) return results; } + + private string CleanReleaseName(string releaseName) + { + releaseName = releaseName.Replace("\\", ""); + + return releaseName; + } } }