summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorM. Voerman <rekordc@gmail.com>2014-05-12 12:54:16 +0200
committerM. Voerman <rekordc@gmail.com>2014-05-12 12:54:16 +0200
commitc99a48974914bae3ad093cc9b4257d8eb82aa857 (patch)
treeb1b6aa1da70b9e178c10b6de7528738705df7f22
parentf94a8c6bf019aa770fa342319794c98735d0eecf (diff)
downloadvdr-vipclient-c99a48974914bae3ad093cc9b4257d8eb82aa857.tar.gz
vdr-vipclient-c99a48974914bae3ad093cc9b4257d8eb82aa857.tar.bz2
Always add the default subtitles to the list.
-rw-r--r--index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.html b/index.html
index 80625a4..96deaed 100644
--- a/index.html
+++ b/index.html
@@ -2209,7 +2209,7 @@ function onKeyMenu(keyCode) {
if (subs_dyn < (subs_prio_dyn.length -1)) { subs_dyn = subs_dyn + 1} else { subs_dyn = 0 }
is = toi.informationService;
if (subs_prio_dyn.length > 0) {
- is.setObject("cfg.media.subtitling.languagepriority",subs_prio_dyn[subs_dyn],is.STORAGE_PERMANENT);
+ is.setObject("cfg.media.subtitling.languagepriority", (subs_prio_dyn[subs_dyn] + "," + subs_prio),is.STORAGE_PERMANENT);
} else {
is.setObject("cfg.media.subtitling.languagepriority",subs_prio,is.STORAGE_PERMANENT);
}