Patch/onedr0p 3 13 17 (#1166)

* Update message when the person has no movies with helpful links

* Added ImdbId to the release info from AwesomeHD

* Add ImdbId to release info for PTP and HDBits

* ImdbId is required for HDBits

* Added some error handling in SkyHook for TMDb

* Remove un-needed imports

* DIsable movie search after list sync (causing issues)

* small change

* Fix HDBits tests
This commit is contained in:
Devin Buhl
2017-03-13 22:34:25 -04:00
committed by GitHub
parent 8ece7e8b4d
commit 35e046bb87
11 changed files with 168 additions and 141 deletions

View File

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