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
Since updating to Ember 3.8.0, ember-ajax stops working in an ES5 build. isUnauthorizedError(new UnauthorizedError()) should return true (and does on ES6 builds on Ember 3.8 and any build on Ember 3.7-) but it returns false on ES5 on 3.8. isUnauthorizedError just does an instanceof check so the issue is somewhere deeper.
It's a regression from 3.7.3.
The text was updated successfully, but these errors were encountered:
Not sure if this is the right title for this issue. Here is a reproduction.
Since updating to Ember 3.8.0,
ember-ajax
stops working in an ES5 build.isUnauthorizedError(new UnauthorizedError())
should returntrue
(and does on ES6 builds on Ember 3.8 and any build on Ember 3.7-) but it returnsfalse
on ES5 on 3.8. isUnauthorizedError just does aninstanceof
check so the issue is somewhere deeper.It's a regression from 3.7.3.
The text was updated successfully, but these errors were encountered: