fix: improve torapi-qbit fallback check for empty magnets
This commit is contained in:
parent
135d51a00e
commit
b971294909
1 changed files with 2 additions and 2 deletions
|
|
@ -443,8 +443,8 @@ async def search_torrent_by_id(torrent_id: str) -> dict:
|
|||
print(f"Warning: No hash found and no valid magnet link. Hash: {hash_value}, Magnet: {result.get('Magnet', 'None')[:50]}")
|
||||
magnet = ""
|
||||
|
||||
# Пробуем локальный torapi-qbit если хэш пустой
|
||||
if not hash_value or not magnet or 'urn:btih:' not in magnet or len(magnet) < 30:
|
||||
# Пробуем локальный torapi-qbit если хэш пустой или битый
|
||||
if not hash_value or not re.search(r'urn:btih:([a-fA-F0-9]{40}|[a-zA-Z0-9]{32})', magnet):
|
||||
try:
|
||||
torapi_add_url = os.getenv("TORAPI_ADD_URL", "http://localhost:8444")
|
||||
fb_resp = await client.get(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue