mirror of
https://github.com/beetbox/beets.git
synced 2026-01-30 12:02:41 +01:00
Merge pull request #3350 from apitofme/Fix-issue-#1693
Fix for issue #1693 (Apply `data_source` field to albums)
This commit is contained in:
commit
29fe07282b
2 changed files with 5 additions and 0 deletions
|
|
@ -754,6 +754,8 @@ class ImportTask(BaseImportTask):
|
|||
self.record_replaced(lib)
|
||||
self.remove_replaced(lib)
|
||||
self.album = lib.add_album(self.imported_items())
|
||||
if 'data_source' in self.imported_items()[0]:
|
||||
self.album.data_source = self.imported_items()[0].data_source
|
||||
self.reimport_metadata(lib)
|
||||
|
||||
def record_replaced(self, lib):
|
||||
|
|
|
|||
|
|
@ -63,6 +63,9 @@ New features:
|
|||
Windows.
|
||||
Thanks to :user:`MartyLake`.
|
||||
:bug:`3331` :bug:`3334`
|
||||
* The 'data_source' field is now also applied as an album-level flexible
|
||||
attribute during imports, allowing for more refined album level searches.
|
||||
:bug:`3350` :bug:`1693`
|
||||
|
||||
Fixes:
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue