My initial setting is to ship from the true branch when the sender and recipient are not equal, but the result is that it ships from the true branch regardless of whether the sender and recipient are equal.
When I change it to a ‘equality’ check, it ships from the false branch regardless of whether they are equal.
Currently, I’m using this if node, and it successfully transmits identical numbers from the true branch and different numbers from the false branch.
I’m an enthusiast and I don’t know anything about programming. I would be extremely grateful if someone could tell me the problem with these two lines of code.
Benjamin_Behrens
It’s nice to see you again, and thank you so much for your help again.
The workflow is now working correctly.
I’ve identified the real problem with my workflow: it’s sending the message to my own account simultaneously. I think the issue might be with the trigger.
My deduction is as follows: After the HTTP message is sent, it’s being pushed back to the webhook as a new message. So even with the IF filter, the order of from and to in the data might be reversed, or the data structure might be different, causing the IF statement to fail.
If this is the problem, how can I test and resolve it?