Pressing notification opens app

Hi

I diving into notifications with the Home Assistant app for IOS. I’m configuring the flows in Node Red to present a notification with the substream from our cameras. The notification triggers if we are away or alarm is active. However, that part I have sorted.

The problem is that when pressing the notification the Home Assistant app opens instead of showing the camera stream. In order to show the stream I need to swipe on the notification and select view.

So the question is how can I trigger the view by simply pressing the notification?

Here is the payload I push to notify

msg.payload = 
{
  "data": {
    "message": msg.cameraName,
    "data": {
      "attachment": {
        "content-type": "jpeg"
      },
      "push": {
        "category": "camera"
      },
      "entity_id": msg.image
    }
  }
}
return msg;

I don’t think it’s possible.
I have similar issue with actionable notifications: we had to learn to 3d touch or long-press to be able to click option. Kind of cumbersome.

What come in my mind is to show the stream in HA application. Just to redirect the click on message to desired HA view - don’t know if it’s possible though