Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions music_assistant/controllers/music.py
Original file line number Diff line number Diff line change
Expand Up @@ -671,6 +671,11 @@ async def add_item_to_library(
# ensure we have a full item
if isinstance(item, str):
full_item = await self.get_item_by_uri(item)
# For builtin provider (manual URLs), use the provided item directly
# to preserve custom modifications (name, images, etc.)
# For other providers, fetch fresh to ensure data validity
elif item.provider == "builtin":
full_item = item
else:
full_item = await self.get_item(
item.media_type,
Expand Down
Loading