[mirotalk] - fix typo

This commit is contained in:
Miroslav Pejic
2025-11-12 11:14:46 +01:00
parent b4bc5eae24
commit cdaa95dca6
+1 -1
View File
@@ -202,7 +202,7 @@ function mergeBrand(target, source) {
const srcVal = source[key];
const tgtVal = output[key];
if (srcVal && typeof srcVal === 'object' && !Array.isArray(srcVal)) {
output[key] = mergeConfig(tgtVal || {}, srcVal);
output[key] = mergeBrand(tgtVal || {}, srcVal);
} else {
output[key] = srcVal;
}