diff --git a/core/server/services/integrations/integrations-service.js b/core/server/services/integrations/integrations-service.js index 13aeaff005..51d6def59c 100644 --- a/core/server/services/integrations/integrations-service.js +++ b/core/server/services/integrations/integrations-service.js @@ -1,4 +1,4 @@ -const {NotFoundError, GhostError} = require('@tryghost/errors'); +const {NotFoundError, InternalServerError} = require('@tryghost/errors'); const tpl = require('@tryghost/tpl'); const messages = { @@ -29,7 +29,7 @@ class IntegrationsService { withRelated: ['api_keys', 'webhooks'] }); } catch (err) { - throw new GhostError({ + throw new InternalServerError({ err: err }); }