use correct title from quodlibet. fixes #4510

This commit is contained in:
Yann Leboulanger 2008-11-25 06:11:16 +00:00
parent 04e88bab3c
commit 3b13665574
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ class MusicTrackListener(gobject.GObject):
def _quodlibet_properties_extract(self, props):
info = MusicTrackInfo()
info.title = props.get('name', None)
info.title = props.get('title', None)
info.album = props.get('album', None)
info.artist = props.get('artist', None)
info.duration = int(props.get('~#length', 0))