Merge pull request 'split instances if string otherwise treat as array' (#4) from feature/fix_parse_instances into master

Reviewed-on: #4
This commit is contained in:
lolcat 2024-02-27 04:32:52 +00:00
commit 3f88069d23
1 changed files with 2 additions and 1 deletions

View File

@ -68,7 +68,8 @@ continue;
$output = $output . "\tconst " . $key . " = " . type_to_string(detect_captcha_dirs()) . ";\n";
}
if($key === "INSTANCES") {
$output = $output . "\tconst " . $key . " = " . type_to_string(explode(',', $val)) . ";\n";
$instances_list = gettype($val) === "string" ? explode(",", $val) : $val;
$output = $output . "\tconst " . $key . " = " . type_to_string($instances_list) . ";\n";
}
}