From 615ad58bc61da2a3962a4a8bd2d05e835b27f835 Mon Sep 17 00:00:00 2001 From: Josh Patra Date: Sat, 31 Jan 2026 00:08:11 -0500 Subject: [PATCH] refactor: change external provider suffix from SW to H --- allstarr/Services/Jellyfin/JellyfinResponseBuilder.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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