Prevent 404-handler mixin from erroring on non-adapter errors

no issue
- add a check for existence of `error.errors` as that won't be present on non-404 errors - fixes non-404 errors such as "no action handled x" being hidden by a completely different error
This commit is contained in:
Kevin Ansfield 2015-12-07 18:37:04 +00:00
parent f02fce75c3
commit 9baa34500b

View File

@ -3,7 +3,7 @@ import Ember from 'ember';
export default Ember.Mixin.create({ export default Ember.Mixin.create({
actions: { actions: {
error(error, transition) { error(error, transition) {
if (error.errors[0].errorType === 'NotFoundError') { if (error.errors && error.errors[0].errorType === 'NotFoundError') {
transition.abort(); transition.abort();
let routeInfo = transition.handlerInfos[transition.handlerInfos.length - 1]; let routeInfo = transition.handlerInfos[transition.handlerInfos.length - 1];