vdr-addon: fix deprecated VDR_CHARSET_OVERRIDE

This commit is contained in:
h.udo 2019-02-12 18:16:54 +00:00 committed by CvH
parent 39d35fefdc
commit 34a48a7ca5
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