diff --git a/allstarr/Services/Jellyfin/JellyfinResponseBuilder.cs b/allstarr/Services/Jellyfin/JellyfinResponseBuilder.cs index 93acc4e..4f2307e 100644 --- a/allstarr/Services/Jellyfin/JellyfinResponseBuilder.cs +++ b/allstarr/Services/Jellyfin/JellyfinResponseBuilder.cs @@ -304,11 +304,11 @@ public class JellyfinResponseBuilder /// public Dictionary ConvertAlbumToJellyfinItem(Album album) { - // Add " - SW" suffix to external album names + // Add " - H" suffix to external album names (H = hifi-api) var albumName = album.Title; if (!album.IsLocal) { - albumName = $"{album.Title} - SW"; + albumName = $"{album.Title} - H"; } var item = new Dictionary @@ -371,11 +371,11 @@ public class JellyfinResponseBuilder /// public Dictionary ConvertArtistToJellyfinItem(Artist artist) { - // Add " - SW" suffix to external artist names + // Add " - H" suffix to external artist names (H = hifi-api) var artistName = artist.Name; if (!artist.IsLocal) { - artistName = $"{artist.Name} - SW"; + artistName = $"{artist.Name} - H"; } var item = new Dictionary