You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-11-25 05:23:13 +03:00
Use safeSet in recursivelyAssign (#3323)
This commit is contained in:
committed by
GitHub
parent
4bdb9111dd
commit
8f701f43fb
@@ -668,7 +668,7 @@ export function recursivelyAssign<T1 extends T2, T2 extends Record<string, any>>
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if ((sourceValue !== null && sourceValue !== undefined) || !ignoreNullish) {
|
if ((sourceValue !== null && sourceValue !== undefined) || !ignoreNullish) {
|
||||||
target[sourceKey as keyof T1] = sourceValue;
|
safeSet(target, sourceKey, sourceValue);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user