1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-22 22:15:17 -04:00

New: Added raw DVD check for BTN to prevent those pesky VIDEO_TS downloads.

fixes #r1377
This commit is contained in:
Taloth Saldono
2016-07-23 21:32:07 +02:00
parent c4a3bc3d2f
commit c7d445d1c1
7 changed files with 132 additions and 0 deletions
@@ -76,6 +76,12 @@ namespace NzbDrone.Core.Indexers.BroadcastheNet
torrentInfo.Seeders = torrent.Seeders;
torrentInfo.Peers = torrent.Leechers + torrent.Seeders;
torrentInfo.Origin = torrent.Origin;
torrentInfo.Source = torrent.Source;
torrentInfo.Container = torrent.Container;
torrentInfo.Codec = torrent.Codec;
torrentInfo.Resolution = torrent.Resolution;
results.Add(torrentInfo);
}