actions.scene.END_CONVERSATION is called

google-assistant

#1

In my Jovo project, I have to stream an audio file but, after I call the webhook and start the audio the conversation ends immediately and the audio doesn’t even start. Is this related to scene? I point to “no transition”, not to “end transition”


#2
{
   "prompt": {
      "firstSimple": {
         "speech": "<speak>**</speak>"
      },
      "content": {
         "card": {
            "title": "*",
            "text": "Playing...",
            "image": {
               "url": "**",
               "alt": "**"
            }
         },
         "media": {
            "mediaType": "AUDIO",
            "mediaObjects": [
               {
                  "name": "Media name",
                  "description": "Media description",
                  "url": "https://storage.googleapis.com/automotive-media/Jazz_In_Paris.mp3",
                  "image": {
                     "large": {
                        "alt": "Jazz in Paris album art",
                        "height": 0,
                        "url": "https://storage.googleapis.com/automotive-media/album_art.jpg",
                        "width": 0
                     }
                  }
               }
            ],
            "startOffset": "0s",
            "optionalMediaControls": [
               "PAUSED",
               "STOPPED"
            ]
         }
      }
   },
   "scene": {
      "next": {
         "name": "actions.scene.END_CONVERSATION"
      }
   },
   "user": {
      "params": {
         "userId": "*"
      }
   }
}

This is what I have in the console when I try to play the audio in googleConv