Fix help buttons for other languages than English and German (#24)

This commit is contained in:
Ingo Oppermann 2023-02-24 09:57:59 +01:00
parent 3d337541ce
commit 113fe20fc2
No known key found for this signature in database
GPG Key ID: 2AB32426E9DD229E
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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];