Hello everyone!
I need help: I want to retrieve an image from an RSS feed, the image is unique but sometimes Make outputs two operations instead of one, which creates two articles afterwards for no reason…
Do you have a solution? It’s weird.
Hello everyone!
I need help: I want to retrieve an image from an RSS feed, the image is unique but sometimes Make outputs two operations instead of one, which creates two articles afterwards for no reason…
Do you have a solution? It’s weird.
This is because one of the previous modules “Search Categories”, returns two bundles (results).
You need to either limit the number of bundles to 1, or aggregate the results of the search module.
Every result (item/record) from a search module will output a bundle. To “combine” them into a single structure, you’ll need to use an aggregator of some sort.
Aggregators are modules that accumulate multiple bundles into one single bundle. An example of a commonly-used aggregator module is the Array aggregator module. The next popular aggregator is the Text Aggregator which is very flexible and has applies to many use-cases.
Thank you Sam, fixed