torrentcsv: improve pr #9875 (#9887)

This commit is contained in:
Diego Heras 2020-10-18 15:14:52 +02:00 committed by GitHub
parent af4864b9a9
commit fcdc41521b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -67,6 +67,11 @@ namespace Jackett.Common.Indexers
MagnetUri = new Uri("magnet:?xt=urn:btih:3333333333333333333333333333333333333333"), // unknown torrent
Category = new List<int> { TorznabCatType.Other.ID },
PublishDate = new DateTime(),
Grabs = 0,
Seeders = 0,
Peers = 0,
DownloadVolumeFactor = 0,
UploadVolumeFactor = 1,
});
return releases;
}