mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-24 06:35:49 +03:00
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:
parent
f02fce75c3
commit
9baa34500b
@ -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];
|
||||||
|
Loading…
Reference in New Issue
Block a user