Magento-RestApi
Magento-RestApi copied to clipboard
Product Attributes not populating
Tried to update to 1.0.4 but the Product.Attributes array does not populate for me. Has attribute handling changed?
I got the same error and found the problem. Product.StartTracking method inits the dictionary of attributes after inserting all the values in it, meaning the dictionary of attributes is always empty.
Could this be a fix?
public override void StartTracking() { Attributes = Attributes ?? new Dictionary<string, string>(); ...