We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3ee2bc commit d33811cCopy full SHA for d33811c
music_assistant/controllers/music.py
@@ -671,6 +671,11 @@ async def add_item_to_library(
671
# ensure we have a full item
672
if isinstance(item, str):
673
full_item = await self.get_item_by_uri(item)
674
+ # For builtin provider (manual URLs), use the provided item directly
675
+ # to preserve custom modifications (name, images, etc.)
676
+ # For other providers, fetch fresh to ensure data validity
677
+ elif item.provider == "builtin":
678
+ full_item = item
679
else:
680
full_item = await self.get_item(
681
item.media_type,
0 commit comments