Removing community and user favicon setting.

pull/1066/head
Dessalines 4 years ago
parent ded7650a60
commit 9c3776d034

@ -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() {

@ -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() {

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

Loading…
Cancel
Save