diff options
Diffstat (limited to '')
| -rw-r--r-- | packages/backend/src/core/CustomEmojiService.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/backend/src/core/CustomEmojiService.ts b/packages/backend/src/core/CustomEmojiService.ts index 2e4eddf797..3b05a13518 100644 --- a/packages/backend/src/core/CustomEmojiService.ts +++ b/packages/backend/src/core/CustomEmojiService.ts @@ -411,7 +411,7 @@ export class CustomEmojiService implements OnApplicationShutdown { if (name == null) return null; if (host == null) return null; - const newHost = host === this.config.host ? null : host; + const newHost = host === this.config.localHost ? null : host; const queryOrNull = async () => (await this.emojisRepository.findOneBy({ name, |