Remove backslashes from BTN release titles.

fixes #1075
pull/6/head
Taloth Saldono 8 years ago
parent ddd119a4eb
commit 0782a15979

@ -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;
}
}
}

Loading…
Cancel
Save