diff --git a/CHANGELOG.md b/CHANGELOG.md index c18c4f2..6c9ed66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [1.15.5](https://github.com/g0ldyy/comet/compare/v1.15.4...v1.15.5) (2024-07-16) + + +### Bug Fixes + +* prowlarr infoHash ([71738ee](https://github.com/g0ldyy/comet/commit/71738ee3a65115694a219b4e55e645df2ccef138)) + +## [1.15.4](https://github.com/g0ldyy/comet/compare/v1.15.3...v1.15.4) (2024-07-16) + + +### Bug Fixes + +* I fixed it I think guys ([86ea5d5](https://github.com/g0ldyy/comet/commit/86ea5d5a3d2af47e3698c04f160e195cf8def614)) + ## [1.15.3](https://github.com/g0ldyy/comet/compare/v1.15.2...v1.15.3) (2024-07-16) diff --git a/comet/utils/general.py b/comet/utils/general.py index 2d81467..3e94b0c 100644 --- a/comet/utils/general.py +++ b/comet/utils/general.py @@ -247,7 +247,7 @@ async def get_indexer_manager( response = await response.json() for result in response: - result["InfoHash"] = result["infoHash"] + result["InfoHash"] = result["infoHash"] if "infoHash" in result else None result["Title"] = result["title"] result["Size"] = result["size"] result["Link"] = result["downloadUrl"]