mirror of
https://github.com/rembo10/headphones.git
synced 2026-05-19 18:15:31 +01:00
Added a try/except catch to the tagging process to catch all beets errors
This commit is contained in:
@@ -408,7 +408,10 @@ def correctMetadata(albumid, release, downloaded_track_list):
|
||||
autotag.apply_metadata(items, info)
|
||||
|
||||
for item in items:
|
||||
item.write()
|
||||
try:
|
||||
item.write()
|
||||
except Exception, e:
|
||||
logger.warn('Error writing metadata to track: %s' % e)
|
||||
|
||||
def embedLyrics(downloaded_track_list):
|
||||
logger.info('Adding lyrics')
|
||||
|
||||
Reference in New Issue
Block a user