Merge pull request #1210 from ZyX-I/fix-1207

Only convert clementine title and album if they are true
This commit is contained in:
Nikolai Aleksandrovich Pavlov 2014-12-03 08:26:40 +03:00
commit 61f0542946
1 changed files with 6 additions and 2 deletions

View File

@ -237,10 +237,14 @@ else:
return return
if not info: if not info:
return return
album = out_u(info.get('xesam:album')) album = info.get('xesam:album')
title = out_u(info.get('xesam:title')) title = info.get('xesam:title')
artist = info.get('xesam:artist') artist = info.get('xesam:artist')
state = _convert_state(status) state = _convert_state(status)
if album:
album = out_u(album)
if title:
title = out_u(title)
if artist: if artist:
artist = out_u(artist[0]) artist = out_u(artist[0])
return { return {