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'; }