From fcdc41521b6dbdc3a11ee4999a12c8f6cc324be3 Mon Sep 17 00:00:00 2001 From: Diego Heras Date: Sun, 18 Oct 2020 15:14:52 +0200 Subject: [PATCH] torrentcsv: improve pr #9875 (#9887) --- src/Jackett.Common/Indexers/TorrentsCSV.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Jackett.Common/Indexers/TorrentsCSV.cs b/src/Jackett.Common/Indexers/TorrentsCSV.cs index 1fc0154a4..3548d341f 100644 --- a/src/Jackett.Common/Indexers/TorrentsCSV.cs +++ b/src/Jackett.Common/Indexers/TorrentsCSV.cs @@ -67,6 +67,11 @@ namespace Jackett.Common.Indexers MagnetUri = new Uri("magnet:?xt=urn:btih:3333333333333333333333333333333333333333"), // unknown torrent Category = new List { TorznabCatType.Other.ID }, PublishDate = new DateTime(), + Grabs = 0, + Seeders = 0, + Peers = 0, + DownloadVolumeFactor = 0, + UploadVolumeFactor = 1, }); return releases; }