Skip to content

Commit

Permalink
Avoid overwriting a set oneof field in target with an unset oneof fie…
Browse files Browse the repository at this point in the history
…ld in source (#395)
  • Loading branch information
jcready committed Nov 15, 2022
1 parent aa9dc2c commit 0d229dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/runtime/src/reflection-merge-partial.ts
Expand Up @@ -37,7 +37,7 @@ export function reflectionMergePartial<T extends object>(info: MessageInfo, targ

if (field.oneof) {
const group = input[field.oneof] as UnknownOneofGroup | undefined; // this is the oneof`s group in the source
if (group == undefined) { // the user is free to omit
if (group?.oneofKind == undefined) { // the user is free to omit
continue; // we skip this field, and all other members too
}
fieldValue = group[name]; // our value comes from the the oneof group of the source
Expand Down

0 comments on commit 0d229dc

Please sign in to comment.