diff --git a/server/src/services/notifications.ts b/server/src/services/notifications.ts index 06f5f76..b25e187 100644 --- a/server/src/services/notifications.ts +++ b/server/src/services/notifications.ts @@ -44,6 +44,7 @@ function getWebhookUrl(): string | null { } function getAppUrl(): string { + if (process.env.APP_URL) return process.env.APP_URL; const origins = process.env.ALLOWED_ORIGINS; if (origins) { const first = origins.split(',')[0]?.trim();