I have an Ionic app that has a user provider with a signup() method:
user
signup()
doSignup() { // set
In my case I was returing with empty return:
if (...) return; // problem here
To fix, I returned the observed object:
if (...) return req.next();