Open AprilArcus opened 2 years ago
Currently, $ngReduxProvider.provideStore(store) leaves a dangling subscription on store when the AngularJS app is torn down by $rootScope.$destroy(). The listener, and the private ngReduxStore referenced within it, will then be leaked.
$ngReduxProvider.provideStore(store)
store
$rootScope.$destroy()
ngReduxStore
Currently,
$ngReduxProvider.provideStore(store)
leaves a dangling subscription onstore
when the AngularJS app is torn down by$rootScope.$destroy()
. The listener, and the privatengReduxStore
referenced within it, will then be leaked.