You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is something wrong when receiving an error from Ghost. I was testing with the local process manager only - not sure if this affects production as well. It's important to fix this error, because it's super hard for the user to know what's wrong if we ship dynamic routing, but the error is not forwarded correctly e.g. you change the routing file, but you received an error.
Ghost sends an IPC message e.g. {started: false, error: 'a message'}
The message is received here. It forwards only the message, no object.
The target process (which is in this case the local process manager) receives the error here. And here is the problem: this function tries to access error.message.
This issue is a
Summary
There is something wrong when receiving an error from Ghost. I was testing with the local process manager only - not sure if this affects production as well. It's important to fix this error, because it's super hard for the user to know what's wrong if we ship dynamic routing, but the error is not forwarded correctly e.g. you change the routing file, but you received an error.
{started: false, error: 'a message'}
error.message
.I guess we can simply change
to
Steps to Reproduce (for a bug report)
Technical details (for a bug report)
@acburdine Any opinion on that? Thanks!
The text was updated successfully, but these errors were encountered: