You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If using an IEnumerable or List of base types (string, int,, double, etc) it will not scrub.
The issue is related to how collections are decomposed for scrubbing. They are treated as classes and a new scrubber engine is spawned, which isn't meant to handle a base type as a direct input.
The text was updated successfully, but these errors were encountered:
Will require a rework of ScrubListItems method to have a check and separate routing for base types.
Will require an overload of ScrubProperty to not have a property (since a base type of a collection wouldn't be a property, but an object in this case)
will require a rework of ManifestBuilder since it relies on a property and in this case you wouldn't have one available
If using an IEnumerable or List of base types (string, int,, double, etc) it will not scrub.
The issue is related to how collections are decomposed for scrubbing. They are treated as classes and a new scrubber engine is spawned, which isn't meant to handle a base type as a direct input.
The text was updated successfully, but these errors were encountered: