Merge pull request #3370 from CvH/9.0/vdr_fix

[vdr-addon] Fix deprecated VDR_CHARSET_OVERRIDE
This commit is contained in:
Matthias Reichl 2019-03-15 23:31:03 +01:00 committed by GitHub
commit 4e7b3cdd2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,6 @@
110
- fix deprecated VDR_CHARSET_OVERRIDE
109
- fix script.config.vdr scan:
. reststfulapi: use header from current wirbelscan

View File

@ -5,7 +5,7 @@
PKG_NAME="vdr-addon"
PKG_VERSION="2.4"
PKG_REV="109"
PKG_REV="110"
PKG_ARCH="any"
PKG_LICENSE="GPL"
PKG_SITE="https://libreelec.tv"

View File

@ -64,7 +64,7 @@ fi
if [ "$ENABLE_CHARSET_OVERRIDE" == "true" ] ; then
if [ ! -z "$CHARSET_OVERRIDE_STR" ] ; then
VDR_CHARSET_OVERRIDE="$CHARSET_OVERRIDE_STR"
VDR_ARG="$VDR_ARG --chartab=$CHARSET_OVERRIDE_STR"
fi
fi
@ -181,4 +181,4 @@ if [ "$ENABLE_VDR_DEBUG" == "true" ] ; then
sleep 1
fi
eval LANG=en_US.UTF-8 VDR_CHARSET_OVERRIDE="$VDR_CHARSET_OVERRIDE" exec vdr.bin $VDR_ARG
eval LANG=en_US.UTF-8 exec vdr.bin $VDR_ARG