mirror of
https://github.com/beetbox/beets.git
synced 2025-12-29 03:52:51 +01:00
convert: Write tags from library instead of copying them
This commit is contained in:
parent
b81ac1d6e0
commit
26dfe38bb0
1 changed files with 2 additions and 3 deletions
|
|
@ -84,9 +84,8 @@ def convert_item(lib, dest_dir):
|
|||
dest_item = library.Item.from_path(dest)
|
||||
else:
|
||||
encode(item.path, dest)
|
||||
dest_item = library.Item.from_path(item.path)
|
||||
dest_item.path = dest
|
||||
dest_item.write()
|
||||
item.path = dest
|
||||
item.write()
|
||||
|
||||
artpath = lib.get_album(item).artpath
|
||||
if artpath and conf['embed']:
|
||||
|
|
|
|||
Loading…
Reference in a new issue