From f9898098c8a6573b3e589e746c4ae73a5287750f Mon Sep 17 00:00:00 2001 From: Mattia <46904691+MattiaPun@users.noreply.github.com> Date: Thu, 6 Nov 2025 14:20:11 +0100 Subject: [PATCH] Use semicolon as default album artist separator --- streamrip/metadata/album.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/streamrip/metadata/album.py b/streamrip/metadata/album.py index aca2500e..8da26605 100644 --- a/streamrip/metadata/album.py +++ b/streamrip/metadata/album.py @@ -304,7 +304,7 @@ def from_tidal(cls, resp) -> AlbumMetadata | None: _copyright = typed(resp.get("copyright", ""), str) artists = typed(resp.get("artists", []), list) - albumartist = ", ".join(a["name"] for a in artists) + albumartist = "; ".join(a["name"] for a in artists) if not albumartist: albumartist = typed(safe_get(resp, "artist", "name", default=""), str)