mirror of
https://github.com/beetbox/beets.git
synced 2025-12-28 11:32:30 +01:00
Remove semicolon when prefix is empty
This commit is contained in:
parent
8bda9f991a
commit
c61d18bed3
1 changed files with 2 additions and 1 deletions
|
|
@ -557,7 +557,8 @@ class DiscogsPlugin(BeetsPlugin):
|
|||
title = track['title']
|
||||
if self.config['index_tracks']:
|
||||
prefix = ', '.join(divisions)
|
||||
title = ': '.join([prefix, title])
|
||||
if prefix != '':
|
||||
title = ': '.join([prefix, title])
|
||||
track_id = None
|
||||
medium, medium_index, _ = self.get_track_index(track['position'])
|
||||
artist, artist_id = MetadataSourcePlugin.get_artist(
|
||||
|
|
|
|||
Loading…
Reference in a new issue