Removing community and user favicon setting.

This commit is contained in:
Dessalines 2020-08-07 13:22:03 -04:00
parent ded7650a60
commit 9c3776d034
3 changed files with 7 additions and 9 deletions

View file

@ -190,11 +190,7 @@ export class Community extends Component<any, State> {
}
get favIcon(): string {
return this.state.community.icon
? this.state.community.icon
: this.state.site.icon
? this.state.site.icon
: favIconUrl;
return this.state.site.icon ? this.state.site.icon : favIconUrl;
}
render() {

View file

@ -92,6 +92,8 @@ export class Post extends Component<any, PostState> {
enable_downvotes: undefined,
open_registration: undefined,
enable_nsfw: undefined,
icon: undefined,
banner: undefined,
},
online: null,
version: null,
@ -191,7 +193,9 @@ export class Post extends Component<any, PostState> {
}
get favIcon(): string {
return this.state.post ? this.state.post.community_icon : favIconUrl;
return this.state.siteRes.site.icon
? this.state.siteRes.site.icon
: favIconUrl;
}
render() {

View file

@ -238,9 +238,7 @@ export class User extends Component<any, UserState> {
}
get favIcon(): string {
return this.state.user.avatar
? this.state.user.avatar
: this.state.siteRes.site.icon
return this.state.siteRes.site.icon
? this.state.siteRes.site.icon
: favIconUrl;
}