After update to core 1.33 I see the following message on some of my feeds, but not all of them
ArgumentCountError: Too few arguments to function _field_filter_items(), 2 passed in /code/modules/feeds/mappers/field.inc on line 40 and exactly 3 expected in _field_filter_items() (line 782 of /code/core/modules/field/field.module)
I found fix for this issue - replacing line 39 in file /mappers/field.inc with the following
// Filter out empty values.
$values = _field_filter_items($info, $values, $instance);
@herbdool , I will attempt to create a PR for your review
After update to core 1.33 I see the following message on some of my feeds, but not all of them
ArgumentCountError: Too few arguments to function _field_filter_items(), 2 passed in /code/modules/feeds/mappers/field.inc on line 40 and exactly 3 expected in _field_filter_items() (line 782 of /code/core/modules/field/field.module)I found fix for this issue - replacing line 39 in file /mappers/field.inc with the following
@herbdool , I will attempt to create a PR for your review