#32 Fixed wrong implementation of settings check for language display

This commit is contained in:
Serraniel 2020-11-08 13:25:55 +01:00
parent 483ea7f96e
commit 51b943bc0f
Signed by: Serraniel
GPG key ID: 3690B4E7364525D3

View file

@ -5,14 +5,12 @@ import * as helper from '../utils/helpers';
export function init() {
getGlobalConfiguration().getProperty(SETTINGS_animeLanguageDisplay, value => {
if (value) {
if (getGlobalConfiguration().animeLanguageDisplay) {
core.registerScript(node => {
// run the scripts
if (helper.isHtmlElement(node)) {
updateLanguageDisplay(node)
}
}, "^/anime/[0-9]*$");
}
core.registerScript(node => {
// run the scripts
if (helper.isHtmlElement(node)) {
updateLanguageDisplay(node)
}
}, "^/anime/[0-9]*$");
}
});
}