Merge pull request #4343 from awiouy/92-ls123

librespot: handle non ascii track information (backport of #4342)
This commit is contained in:
CvH 2020-04-22 18:33:16 +02:00 committed by GitHub
commit 5cba9a8374
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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