Fixes internal error while modifing the scripts

This commit is contained in:
Matteo Biscosi 2021-02-11 17:25:18 +01:00
parent d6d0780507
commit c82e007653
2 changed files with 2 additions and 2 deletions

View file

@ -1486,7 +1486,7 @@ function appendExclusionList(data) {
if (scriptConfExList) {
const scriptConfCurrFil = scriptConfExList.current_filters;
if (scriptConfCurrFil) {
for (const [key, value] of Object.entries(scriptConfExList)) {
for (const [key, value] of Object.entries(scriptConfCurrFil)) {
if (value["str_format"]) {
ex_list_str += value["str_format"] + "\n";
}