Open RollingStar opened 7 years ago
Thanks! That's a pretty clear problem: to compute the value of album
, beets is trying to use the value of album
. 🙄 We may even be able to support this by cutting the recursion cycle.
Just stumbled upon this issue after trying the following:
item_fields:
original_year: original_year if original_year > 0 else year
album_fields:
original_year: original_year if original_year > 0 else year
So, the only workaround to fix a missing value is adding a custom field?
Indeed; choosing a new name will work.
Just a heads up, this also affects beet update
. Had to disable the inline plugin entirely to get anything to work again.
Problem
Another semi-silly one. Users can probably guess that this is a bad idea, but I tried it anyway.
This happens after telling import to [R]emove old:
Led to this problem:
Setup
When I have beets like this, it lists two "album" fields in
beet fields
.Potential fix
Maybe quit beets with an error message about using the same fields as beets defaults?