Continue Flow after checking Nodes

Using Node-Red
A text message is generated by some event within the system.

I have a flow to controls when and who gets notification and by which notification methods.

The conditions are

  • if input_boolean.alert_mode=true then continue the flow.
    • else only continue if msg.emergency=true
  • if input_boolean.cast_mode=true then send to personal assistants
    • else skip personal assistants but send to “people” (a group of device trackers)

The issue I keep running into is that when I check the “input_boolean.alert_mode=true” (using the current state node), I loose the flow.

Any Ideas?

Do you have it like this? or you have “true” instead of “on”? if you set it like in the picture it should work

For what I see in the picture the flow has never reached the current state node of the input so the problem is probably before. Use the debug node to check it out.

If this doesn’t solve your issue please update the code of your flow.