diff --git a/CHANGELOG.md b/CHANGELOG.md index 7655324..696ed17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## v1.7.0 > v1.x.x - Fix internal player skin (volume bar) +- Fix help buttons for other languages than English and German ([#24](https://github.com/datarhei/restreamer-ui/issues/24)) ## v1.6.0 > v1.7.0 diff --git a/src/utils/help.js b/src/utils/help.js index ebd5593..5c5c8fc 100644 --- a/src/utils/help.js +++ b/src/utils/help.js @@ -209,7 +209,7 @@ function getTopicURL(topic, locale) { if (!(locale in topics[topic])) { // If locale doesn't exist, return default locale (en) URL // This requires that "en" exists for all topics. - return topic[topic].en; + return topics[topic].en; } return topics[topic][locale];