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:
parent
40c1271c08
commit
134f9a2b10
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ errors = {
|
|||
renderErrorPage: function (code, err, req, res, next) {
|
||||
|
||||
function parseStack(stack) {
|
||||
if (_.isString(stack)) {
|
||||
if (!_.isString(stack)) {
|
||||
return stack;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue