diff --git a/src/mail_templates/oom_event.ejs b/src/mail_templates/oom_event.ejs index 48c23a6ba..6b4936dac 100644 --- a/src/mail_templates/oom_event.ejs +++ b/src/mail_templates/oom_event.ejs @@ -6,7 +6,7 @@ Dear <%= cloudronName %> Admin, If this message appears repeatedly, give the app more memory. -* To increase an app's memory limit - https://cloudron.io/documentation/apps/#increasing-the-memory-limit-of-an-app +* To increase an app's memory limit - https://cloudron.io/documentation/apps/#memory-limit * To increase a service's memory limit - https://cloudron.io/documentation/troubleshooting/#services Out of memory event: diff --git a/src/notifications.js b/src/notifications.js index 5fe931515..b9bddac44 100644 --- a/src/notifications.js +++ b/src/notifications.js @@ -156,7 +156,7 @@ function oomEvent(eventId, app, addon, containerId, event, callback) { if (app) { program = `App ${app.fqdn}`; title = `The application ${app.fqdn} (${app.manifest.title}) ran out of memory.`; - message = 'The application has been restarted automatically. If you see this notification often, consider increasing the [memory limit](https://cloudron.io/documentation/apps/#increasing-the-memory-limit-of-an-app)'; + message = 'The application has been restarted automatically. If you see this notification often, consider increasing the [memory limit](https://cloudron.io/documentation/apps/#memory-limit)'; } else if (addon) { program = `${addon.name} service`; title = `The ${addon.name} service ran out of memory`;