Getting [$rootScope:inprog] $digest already in progress [SANITIZED URL] in Meteor app using meteor-angular-templates
I have been getting this error is some places in my meteor app. I tried wrapping $apply calls in my app within a $timeout but that didn't work. I suspect it has something to do with Tracker.autorun() calls in my angular controllers. Does Tracker.autorun() follow the same digest and apply cycle as Angular? Is multiple function calls a reason that the view pages are being rendered again and again which cause $digest error.
Tracker.autorun(() => {
Multiple function calls here
})

From the Docs:
For more information, see