From cd19aa03019acca2bbe005bbc407739dfbf01bb9 Mon Sep 17 00:00:00 2001 From: elmerohueso Date: Sat, 2 May 2026 07:56:47 -0600 Subject: [PATCH] revert tidal artist/track id name for hifi downloads Co-authored-by: Copilot --- core/metadata/source.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/metadata/source.py b/core/metadata/source.py index a64f55c5..0c101f5e 100644 --- a/core/metadata/source.py +++ b/core/metadata/source.py @@ -1052,9 +1052,9 @@ def embed_source_ids(audio_file, metadata: dict, context: dict = None, runtime=N if cached_meta.get("source") == "hifi": if _tag_enabled(cfg, "hifi.embed_tags"): if cfg.get("hifi.tags.track_id", True) and cached_meta.get("track_id"): - pp["id_tags"]["TIDAL_TRACK_ID"] = str(cached_meta["track_id"]) + pp["id_tags"]["HIFI_TRACK_ID"] = str(cached_meta["track_id"]) if cfg.get("hifi.tags.artist_id", True) and cached_meta.get("artist_id"): - pp["id_tags"]["TIDAL_ARTIST_ID"] = str(cached_meta["artist_id"]) + pp["id_tags"]["HIFI_ARTIST_ID"] = str(cached_meta["artist_id"]) if cfg.get("hifi.tags.isrc", True) and cached_meta.get("isrc"): pp["hifi_isrc"] = cached_meta["isrc"] if cfg.get("hifi.tags.bpm", True) and cached_meta.get("bpm"):