diff --git a/CHANGELOG.md b/CHANGELOG.md index 22ef890..447aaca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/comet/debrid/realdebrid.py b/comet/debrid/realdebrid.py index 137aac3..c1ad9c4 100644 --- a/comet/debrid/realdebrid.py +++ b/comet/debrid/realdebrid.py @@ -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}" diff --git a/comet/utils/models.py b/comet/utils/models.py index f3aee5a..5800ee6 100644 --- a/comet/utils/models.py +++ b/comet/utils/models.py @@ -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"