From 2d00b1d0fb4bd32a5db7754d4ecfb16a8ad411f4 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Wed, 29 Jul 2020 00:29:19 -0400 Subject: [PATCH] Using full community title as document.title --- ui/src/components/community.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/src/components/community.tsx b/ui/src/components/community.tsx index 76e6450e2..579b4c196 100644 --- a/ui/src/components/community.tsx +++ b/ui/src/components/community.tsx @@ -176,8 +176,8 @@ export class Community extends Component { } get documentTitle(): string { - if (this.state.community.name) { - return `!${this.state.community.name} - ${this.state.site.name}`; + if (this.state.community.title) { + return `${this.state.community.title} - ${this.state.site.name}`; } else { return 'Lemmy'; }