diff --git a/src/routes/support.js b/src/routes/support.js index 93ce86003..f02b04cbb 100644 --- a/src/routes/support.js +++ b/src/routes/support.js @@ -41,7 +41,7 @@ async function enableRemoteSupport(req, res, next) { if (typeof req.body.enable !== 'boolean') return next(new HttpError(400, 'enabled is required')); const [error] = await safe(support.enableRemoteSupport(req.body.enable, AuditSource.fromRequest(req))); - if (error) return next(new HttpError(503, 'Error enabling remote support. Try running "cloudron-support --enable-ssh" on the server')); + if (error) return next(new HttpError(503, 'Error enabling remote support. Try running "cloudron-support --enable-remote-support" on the server')); next(new HttpSuccess(202, {})); }