Not following stories flow as expected

Stories are below

- story: ask weather after auth
  steps:
  - intent: weather
  - slot_was_set:
    - is_authenticated: true
  - action: weather_form
  - active_loop: weather_form
  - active_loop: null
  - action: action_get_temp 

- story: ask weather before auth
  steps:
  - intent: weather
  - slot_was_set:
    - is_authenticated: false
  - action: account_form
  - active_loop: account_form
  - active_loop: null
  - action: weather_form
  - active_loop: weather_form
  - active_loop: null
  - action: action_get_temp 

and slot is defined like below:

  is_authenticated:
    type: bool
    influence_conversation: true
    initial_value: false
    mappings:
      - type: custom

so after authentication slot ‘is_authenticated’ getting set to true but only second story is getting follwed.

Hi Mudassir,

try adding

steps:
  - slot_was_set:
    - is_authenticated: false

to the start of each story. Could be some bug in place.

Regards, Nikola

No still not working