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:
commit
dfced52abc
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…
Reference in a new issue