0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00

Fixes regression introduced in #1218.

This commit is contained in:
Fabian Becker 2013-10-25 19:31:53 +00:00
parent 40c1271c08
commit 134f9a2b10

View file

@ -109,7 +109,7 @@ errors = {
renderErrorPage: function (code, err, req, res, next) {
function parseStack(stack) {
if (_.isString(stack)) {
if (!_.isString(stack)) {
return stack;
}