Fix pending release service, HDBits, also the release deduper. Clean up housekeeping (#1211)

* Fix HDbits

* Fix pending release service, also fix the deduper

* Clean up the cleanup'er (housekeeping)

* Revert "Clean up the cleanup'er (housekeeping)"

This reverts commit c03c13d9241a0f59f118cd9ffccba5646a3f52ca.

* Housekeeping updates, without breaking tests

* Fix last test
This commit is contained in:
Devin Buhl
2017-03-18 00:29:18 -04:00
committed by GitHub
parent 59c07cc5f3
commit c593f4250d
6 changed files with 54 additions and 56 deletions

View File

@@ -65,7 +65,7 @@ namespace NzbDrone.Core.Indexers.HDBits
Peers = result.Leechers + result.Seeders,
PublishDate = result.Added.ToUniversalTime(),
Internal = internalRelease,
ImdbId = result.ImdbInfo.Id
ImdbId = result.ImdbInfo?.Id ?? 0
});
}