mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
Gazelle: improve isPersonalFreeleech handling
This commit is contained in:
@@ -228,7 +228,8 @@ namespace Jackett.Indexers.Abstract
|
|||||||
{
|
{
|
||||||
release.DownloadVolumeFactor = 0;
|
release.DownloadVolumeFactor = 0;
|
||||||
}
|
}
|
||||||
if ((bool)torrent["isPersonalFreeleech"])
|
var isPersonalFreeleech = (bool?)torrent["isPersonalFreeleech"];
|
||||||
|
if (isPersonalFreeleech != null && isPersonalFreeleech == true)
|
||||||
{
|
{
|
||||||
release.DownloadVolumeFactor = 0;
|
release.DownloadVolumeFactor = 0;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user