mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
Fixed: No longer mixes up peers and leechers, so the UI should now properly report seeders and leechers.
This commit is contained in:
@@ -59,7 +59,7 @@ namespace NzbDrone.Core.Indexers.BroadcastheNet
|
||||
//torrentInfo.MagnetUrl =
|
||||
torrentInfo.InfoHash = torrent.InfoHash;
|
||||
torrentInfo.Seeders = torrent.Seeders;
|
||||
torrentInfo.Peers = torrent.Leechers;
|
||||
torrentInfo.Peers = torrent.Leechers + torrent.Seeders;
|
||||
|
||||
results.Add(torrentInfo);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user