diff options
Diffstat (limited to 'pyload/web/app/index.html')
-rw-r--r-- | pyload/web/app/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/web/app/index.html b/pyload/web/app/index.html index 7759b0cfa..5bf3971ab 100644 --- a/pyload/web/app/index.html +++ b/pyload/web/app/index.html @@ -22,7 +22,7 @@ // Use value set by templateEngine or default val function configValue(string, defaultValue) { - if (string.indexOf('{{') > -1 && string !== 'None' && string !== '') + if (string.indexOf('{'+'{') > -1 && string !== 'None' && string !== '') return defaultValue; return string; } |