Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/g0ldyy/comet
Browse files Browse the repository at this point in the history
  • Loading branch information
g0ldyy committed Jul 18, 2024
2 parents 33ef5b1 + 5033819 commit aaeb97a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion comet/utils/general.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down

0 comments on commit aaeb97a

Please sign in to comment.