Add fixmes
This commit is contained in:
parent
326ade05cc
commit
f58d47fda2
@ -105,7 +105,6 @@ def _convert_mpd_data(data, tracks, music_dir):
|
|||||||
if 'artist' in data:
|
if 'artist' in data:
|
||||||
artist_kwargs['name'] = data['artist']
|
artist_kwargs['name'] = data['artist']
|
||||||
|
|
||||||
# FIXME Newer mpd tag caches support albumartist names
|
|
||||||
if 'album' in data:
|
if 'album' in data:
|
||||||
album_kwargs['name'] = data['album']
|
album_kwargs['name'] = data['album']
|
||||||
|
|
||||||
@ -121,8 +120,6 @@ def _convert_mpd_data(data, tracks, music_dir):
|
|||||||
if 'musicbrainz_artistid' in data:
|
if 'musicbrainz_artistid' in data:
|
||||||
artist_kwargs['musicbrainz_id'] = data['musicbrainz_artistid']
|
artist_kwargs['musicbrainz_id'] = data['musicbrainz_artistid']
|
||||||
|
|
||||||
# FIXME what if file is uri - generated tag cache needs to allways make
|
|
||||||
# LOCAL_MUSIC_PATH relative paths or this code must handle uris
|
|
||||||
if data['file'][0] == '/':
|
if data['file'][0] == '/':
|
||||||
path = data['file'][1:]
|
path = data['file'][1:]
|
||||||
else:
|
else:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user