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
The problem is that we dispose the watcher, which removes it from the
array, but then immediately try to get it off the array. It then throws
into the catch where it tries to get it off the array again to
dispose (again).
Use a local object instead of getting it off the array each time.
0 commit comments