mirror of https://github.com/Jackett/Jackett
Gazelle: improve isPersonalFreeleech handling
This commit is contained in:
parent
466be31e6f
commit
183fb56b0a
|
@ -228,7 +228,8 @@ namespace Jackett.Indexers.Abstract
|
|||
{
|
||||
release.DownloadVolumeFactor = 0;
|
||||
}
|
||||
if ((bool)torrent["isPersonalFreeleech"])
|
||||
var isPersonalFreeleech = (bool?)torrent["isPersonalFreeleech"];
|
||||
if (isPersonalFreeleech != null && isPersonalFreeleech == true)
|
||||
{
|
||||
release.DownloadVolumeFactor = 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue