Loop on say no intent, and avoid end session

amazon-alexa

#1

hi, i have an issue with no intent, and wish to avoir end session after speech, and loop each time user say no

from first No, session is End abruptaly,
How to make it show next on No again ?

NoIntent() {
    let speech = getTitre(this, this.$session.$data.index++);
    this.tell(speech);
  },

image


#2

I try this without success

  NoIntent() {
    let speech = getTitre(this, this.$session.$data.index++);
    this.tell(speech);
    return this.toIntent('NoIntent')
  },

#3

You’re using a tell, which closes the session: https://www.jovo.tech/docs/output#tell