nodetskeleton icon indicating copy to clipboard operation
nodetskeleton copied to clipboard

ObjectPropertyUtil in buildRequest assign options properties to origin

Open AetherFabian opened this issue 1 month ago • 0 comments

Issue Description

Problem: The ObjectPropertyUtil utility is incorrectly assigning properties from the options parameter to the origin object when calling ObjectPropertyUtil.assign(options, origin, "body");.

Expected Behavior: The utility should assign properties from the origin object to the options parameter, following the expected method call ObjectPropertyUtil.assign(origin, options, "body");.

Current Code:

ObjectPropertyUtil.assign(options, origin, "body");

Correct Code:

ObjectPropertyUtil.assign(origin, options, "body");

AetherFabian avatar May 23 '24 16:05 AetherFabian