Fixed: (Cardigann) Don't die if no categories can be mapped for a release

Fixes #105
This commit is contained in:
Qstick
2021-06-12 02:17:17 -04:00
parent bcee5f1754
commit 9675171aff
31 changed files with 41 additions and 40 deletions
@@ -58,7 +58,7 @@ namespace NzbDrone.Core.Indexers.Rarbg
var torrentInfo = new TorrentInfo();
torrentInfo.Guid = GetGuid(torrent);
torrentInfo.Category = _capabilities.Categories.MapTrackerCatDescToNewznab(torrent.category);
torrentInfo.Categories = _capabilities.Categories.MapTrackerCatDescToNewznab(torrent.category);
torrentInfo.Title = torrent.title;
torrentInfo.Size = torrent.size;
torrentInfo.DownloadUrl = torrent.download;