String compare in filters

I wanted to know if this has happened to you because a filter does not seem to be working properly.
In a filter I’m comparing as string 2 arrays (parsed to String): if they are equals, stop the execution. In the history of the executions it dont stop (the strings are supposedly different), but checking I see that the data is the same.
And if I also launch a manual execution, then the filter for the execution seems to compare well with the strings. How can this be? :frowning:

@Ruben

Maybe you can share more details on the actual scenario you are having trouble with.

Thanks Jim!
Finally it was my fail, beacuse the arrays indeed were different in the order, so just using the sort function before compare them is the solution. :slight_smile: Thanks anyway! :slight_smile: