Skip to content

Commit

Permalink
Fixed: Set Download/Upload factors for Rarbg
Browse files Browse the repository at this point in the history
Fixes #234
  • Loading branch information
Qstick committed Jun 22, 2021
1 parent 3435d9d commit b1727d9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/NzbDrone.Core/Indexers/Definitions/Rarbg/RarbgParser.cs
Expand Up @@ -66,6 +66,8 @@ public IList<ReleaseInfo> ParseResponse(IndexerResponse indexerResponse)
torrentInfo.PublishDate = torrent.pubdate.ToUniversalTime();
torrentInfo.Seeders = torrent.seeders;
torrentInfo.Peers = torrent.leechers + torrent.seeders;
torrentInfo.DownloadVolumeFactor = 0;
torrentInfo.UploadVolumeFactor = 1;

if (torrent.movie_info != null)
{
Expand Down

0 comments on commit b1727d9

Please sign in to comment.