Bot Framework V4 - TypeError: Cannot perform 'get' on a proxy that has been revoked

前端 未结 3 787
轮回少年
轮回少年 2021-01-19 02:08

I am trying to make a rest query against a database that stores knowledge articles for users and returns an array of results based on what the user has searched for. Wheneve

3条回答
  •  一个人的身影
    2021-01-19 02:17

    The answer for me was to double check I didn't miss any await usage that might be necessary. Turns out I called this.dialog.run(context, this.dialogState); without the await and that threw the same error. I found the answer on this Github issue

提交回复
热议问题