This commit is contained in:
2026-01-11 14:46:41 -08:00
parent 1f3de7db1c
commit 275f18cb31
19 changed files with 2741 additions and 394 deletions

View File

@@ -790,9 +790,9 @@ def _get_playable_path(
if manifest_path:
path = manifest_path
else:
# If this is a hifi:// placeholder and we couldn't resolve a manifest, do not fall back.
# If this is a tidal:// placeholder and we couldn't resolve a manifest, do not fall back.
try:
if isinstance(path, str) and path.strip().lower().startswith("hifi:"):
if isinstance(path, str) and path.strip().lower().startswith("tidal:"):
try:
meta = None
if isinstance(item, dict):
@@ -803,7 +803,7 @@ def _get_playable_path(
print(str(meta.get("_tidal_manifest_error")), file=sys.stderr)
except Exception:
pass
print("HIFI selection has no playable DASH MPD manifest.", file=sys.stderr)
print("Tidal selection has no playable DASH MPD manifest.", file=sys.stderr)
return None
except Exception:
pass