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 3, 2024
2 parents 60a6f9d + 62ddfac commit b811661
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.3.1](https://github.com/g0ldyy/comet/compare/v1.3.0...v1.3.1) (2024-07-03)


### Bug Fixes

* that's how you release it hehe ([ad65d1f](https://github.com/g0ldyy/comet/commit/ad65d1f99e9996f06d88b27c168d70b3b3998126))

## [1.3.0](https://github.com/g0ldyy/comet/compare/v1.2.2...v1.3.0) (2024-07-03)


Expand Down
1 change: 0 additions & 1 deletion comet/debrid/realdebrid.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ async def generate_download_link(self, hash: str, index: str):
logger.warning(
"Real-Debrid blacklisted server's IP. No proxy found."
)
return "https://comet.fast"
else:
logger.warning(
f"Real-Debrid blacklisted server's IP. Switching to proxy {proxy} for {hash}|{index}"
Expand Down
2 changes: 1 addition & 1 deletion comet/utils/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class AppSettings(BaseSettings):
FASTAPI_WORKERS: int = 2 * (os.cpu_count() or 1)
DATABASE_PATH: str = "data/comet.db"
CACHE_TTL: int = 86400
DEBRID_PROXY_URL: str = "http://127.0.0.1:1080"
DEBRID_PROXY_URL: Optional[str] = None
INDEXER_MANAGER_TYPE: str = "jackett"
INDEXER_MANAGER_URL: str = "http://127.0.0.1:9117"
INDEXER_MANAGER_API_KEY: str = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
Expand Down

0 comments on commit b811661

Please sign in to comment.