This commit is contained in:
2026-01-31 23:22:30 -08:00
parent ed44d69ef1
commit 753cdfb196
6 changed files with 454 additions and 35 deletions

View File

@@ -398,7 +398,7 @@ def match_provider_name_for_url(url: str) -> Optional[str]:
dom = dom_raw.lower()
if not dom:
continue
if "://" in dom or dom.startswith("magnet:"):
if "://" in dom or dom.startswith("magnet:") or dom.endswith(":") or "🧲" in dom:
if raw_url_lower.startswith(dom):
return info.canonical_name
continue