Replies: 3 comments 4 replies
-
When I add the following types:
Beets throws the following error on import even though these 2 attributes are returned in the
|
Beta Was this translation helpful? Give feedback.
-
That's odd; all attributes applied from |
Beta Was this translation helpful? Give feedback.
-
One additional observation: This seems to be somewhat of a hack to retain this information (the url) from the metadata source, since this is not really a tag that should be stored permanently in the database, but rather temporary information during import. It would be cleaner to somehow store this in the |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I'm not sure if this is a bug or if I'm missing something, hence why this is a discussion.
I'm attempting to add fetching of cover art for an Audible plugin. In the
candidates
function, I have added acover_url
flexible attribute on theAlbumInfo
object which stores the url where the image can be downloaded from. This is because in that function while getting a list of possible matches, the API response does contain the cover image url.I tried adding a new import stage, and accessing the attribute by using
task.album.cover_url
to no avail. Inspecting the keys on thetask.album
object, it seems that all flexible attributes that I've set in thecandidates
function have been stripped, leaving only the built-in attributes.Is there a way to have the flexible attributes preserved on albums passed into events?
I'm using the fetchart plugin as a reference while implementing this.
Beta Was this translation helpful? Give feedback.
All reactions