From 24734d408700a72d45c3ff4a679606cab3ec544f Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Mon, 2 Mar 2026 16:05:12 -0500 Subject: split url into webUrl and localUrl (like mastodon) --- packages/backend/src/core/GlobalEventService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/backend/src/core/GlobalEventService.ts') diff --git a/packages/backend/src/core/GlobalEventService.ts b/packages/backend/src/core/GlobalEventService.ts index c146811331..c35e7243d3 100644 --- a/packages/backend/src/core/GlobalEventService.ts +++ b/packages/backend/src/core/GlobalEventService.ts @@ -359,7 +359,7 @@ export class GlobalEventService { { type: type, body: null } : { type: type, body: value }; - await this.redisForPub.publish(this.config.host, JSON.stringify({ + await this.redisForPub.publish(this.config.webHost, JSON.stringify({ channel: channel, message: message, })); -- cgit v1.2.3-freya