You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this line of code, we didn't assign the result of observable.subscribe() to subscription. Thus, subscription is always empty and thus, we never call unsubscribe().
Background
https://github.com/Microsoft/BotFramework-WebChat/blob/master/packages/core/src/sagas/effects/observeOnce.js#L11
In this line of code, we didn't assign the result of
observable.subscribe()
tosubscription
. Thus,subscription
is always empty and thus, we never callunsubscribe()
.Things to-do
observable.subscribe()
tosubscription
variableunsubscribe()
is being called correctlyobserveOnce
will continues to workThe text was updated successfully, but these errors were encountered: