mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
Fixed error message for failed xmlrpc request
no issue - error message was stating the error occurred in the `slack` service rather than the `xmlrpc` service
This commit is contained in:
parent
5ef9b38524
commit
d10cb5cb6b
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ function ping(post) {
|
||||||
common.logging.error(new common.errors.GhostError({
|
common.logging.error(new common.errors.GhostError({
|
||||||
err: err,
|
err: err,
|
||||||
message: err.message,
|
message: err.message,
|
||||||
context: common.i18n.t('errors.services.ping.requestFailed.error', {service: 'slack'}),
|
context: common.i18n.t('errors.services.ping.requestFailed.error', {service: 'xmlrpc'}),
|
||||||
help: common.i18n.t('errors.services.ping.requestFailed.help', {url: 'http://docs.ghost.org'})
|
help: common.i18n.t('errors.services.ping.requestFailed.help', {url: 'http://docs.ghost.org'})
|
||||||
}));
|
}));
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue