mirror of
https://github.com/beetbox/beets.git
synced 2026-01-19 06:34:05 +01:00
Prevent album genre inherit only when source:track
is configured.
This commit is contained in:
parent
bd0c02437a
commit
e1fe6fd3d0
1 changed files with 4 additions and 1 deletions
|
|
@ -527,7 +527,10 @@ class LastGenrePlugin(plugins.BeetsPlugin):
|
|||
album,
|
||||
src,
|
||||
)
|
||||
album.store(inherit=False)
|
||||
if "track" in self.sources:
|
||||
album.store(inherit=False)
|
||||
else:
|
||||
album.store()
|
||||
|
||||
for item in album.items():
|
||||
# If we're using track-level sources, also look up each
|
||||
|
|
|
|||
Loading…
Reference in a new issue