librespot: handle non ascii track information

This commit is contained in:
awiouy 2020-04-21 23:26:15 +02:00
parent f8b66fc45a
commit 967bb6328a
3 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,6 @@
123
- Handle non ascii track information
122
- Improve track information: fanart, podcast
- Improve settings: autoplay, name, RTP port

View File

@ -6,7 +6,7 @@ PKG_NAME="librespot"
PKG_VERSION="66f8a98ad2f5bf35be4daecd788dad6f0d87fb7c"
PKG_SHA256="b027c983341aa53d940412d5624cfe91392958ea9836ba597289680a4430b253"
PKG_VERSION_DATE="2020-02-27"
PKG_REV="122"
PKG_REV="123"
PKG_ARCH="any"
PKG_LICENSE="MIT"
PKG_SITE="https://github.com/librespot-org/librespot/"

View File

@ -23,7 +23,7 @@ def get(info, indices, default):
try:
for index in indices:
info = info[index]
return info
return info.encode('utf-8')
except LookupError:
return default