0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

Merge pull request #1281 from halfdan/regression

Fixes regression introduced in #1218.
This commit is contained in:
Hannah Wolfe 2013-10-25 13:13:38 -07:00
commit dfced52abc

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;
}