diff --git a/productivity/scheduling/backend/ical.controller.ts b/productivity/scheduling/backend/ical.controller.ts index 4bdeef9..73c9475 100644 --- a/productivity/scheduling/backend/ical.controller.ts +++ b/productivity/scheduling/backend/ical.controller.ts @@ -26,7 +26,7 @@ export class IcalController { @Get('feeds') @ApiOperation({ summary: 'List available iCal feed URLs' }) async listFeeds(@Query('baseUrl') baseUrl?: string): Promise> { - const base = baseUrl ?? `http://lm.apricot.local:3700`; + const base = baseUrl ?? `http://lm.apricot.lan:3700`; return this.exportService.listFeeds(base); }