0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00: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:
Kevin Ansfield 2018-05-10 10:16:34 +01:00
parent 5ef9b38524
commit d10cb5cb6b

View file

@ -75,7 +75,7 @@ function ping(post) {
common.logging.error(new common.errors.GhostError({
err: err,
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'})
}));
});