IF - true/false in JSON String

My function has an inbound webhook with a parameter like so:

"resolved": false

I then have an IF that is setup with a string condition to see if {{$node[“Webook”].json[“Resolved”]}} equals true:
image
And the problem is that the output is aways false, even if the inbound webhook parameter is true. What am I missing?

Yes, that is expected. The value is a boolean not a string. Use the boolean condition in the if node.

Yup, that was it. :man_facepalming: Thanks @RicardoE105!