Skip to content

Commit

Permalink
Merge pull request #33 from LimeDrive:LimeDrive/issue32
Browse files Browse the repository at this point in the history
Remove apikey check on config route for app and android.

#32
  • Loading branch information
LimeDrive authored Sep 17, 2024
2 parents 64528d5 + c60ed18 commit cd38a4f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "stream-fusion"
version = "1.4.0"
version = "1.4.1"
description = "StreamFusion is an advanced plugin for Stremio that significantly enhances its streaming capabilities with debrid service."
authors = ["LimeDrive <[email protected]>"]
readme = "README.md"
Expand Down
12 changes: 6 additions & 6 deletions stream_fusion/web/root/config/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,12 @@ async def get_manifest(config: str):
config = parse_config(config)
logger.debug(f"Parsed configuration: {config}")

api_key = config.get("apiKey")
if api_key:
await check_api_key(api_key)
else:
logger.warning("API key not found in config.")
raise HTTPException(status_code=401, detail="API key not found in config.")
# api_key = config.get("apiKey")
# if api_key:
# await check_api_key(api_key)
# else:
# logger.warning("API key not found in config.")
# raise HTTPException(status_code=401, detail="API key not found in config.")

yggflix_ctg = config.get("yggflixCtg", True)
yggtorrent_ctg = config.get("yggtorrentCtg", True)
Expand Down

0 comments on commit cd38a4f

Please sign in to comment.