Lots of workings to search processing, UI Categories

This commit is contained in:
Qstick
2020-11-19 16:32:15 -05:00
parent 710b4f5ec6
commit 8e72c7153d
51 changed files with 736 additions and 240 deletions
@@ -472,13 +472,14 @@ namespace NzbDrone.Core.Indexers.Cardigann
result.AddRange(releases.Select(x => new TorrentInfo
{
PublishDate = x.PublishDate,
Guid = x.Guid.ToString(),
Title = x.Title,
Size = x.Size.Value,
DownloadUrl = x.Link?.ToString(),
DownloadUrl = x.Link.AbsoluteUri,
CommentUrl = x.Comments?.ToString(),
InfoUrl = x.Link?.ToString(),
MagnetUrl = x.MagnetUri?.ToString(),
MagnetUrl = x.MagnetUri?.AbsoluteUri,
InfoHash = x.InfoHash,
Seeders = (int?)x.Seeders,
Peers = (int?)x.Peers,