From 4ddb86522c2d53551f010053e55f524f35b84c76 Mon Sep 17 00:00:00 2001 From: elmerohueso Date: Fri, 1 May 2026 20:41:30 -0600 Subject: [PATCH] name tidal and hifi tags the same way --- 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 0c101f5e..a64f55c5 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"]["HIFI_TRACK_ID"] = str(cached_meta["track_id"]) + pp["id_tags"]["TIDAL_TRACK_ID"] = str(cached_meta["track_id"]) if cfg.get("hifi.tags.artist_id", True) and cached_meta.get("artist_id"): - pp["id_tags"]["HIFI_ARTIST_ID"] = str(cached_meta["artist_id"]) + pp["id_tags"]["TIDAL_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"):