I assume this is not sure a regression but I didn't change any of the related code so I am not sure what is going on. Basically, after upgrading ember and ember-cli to the latest versions ~2.4.3 and emberfire to 1.6.6 I am getting weird behavior seen in the attached gif screen recording.
The popup opens but never closes and the page redirects right away instead of after and the debugger below never gets hit.
```
const self = this;
this.get("session").open("firebase", { provider: provider}).then(function(data) {
debugger
self.get('register').perform(data);
});
```
Hoping someone recognizes this issue as I don't get any errors anywhere.