]> Untitled Git - lemmy.git/commitdiff
Removing community and user favicon setting.
authorDessalines <tyhou13@gmx.com>
Fri, 7 Aug 2020 17:22:03 +0000 (13:22 -0400)
committerDessalines <tyhou13@gmx.com>
Fri, 7 Aug 2020 17:22:03 +0000 (13:22 -0400)
ui/src/components/community.tsx
ui/src/components/post.tsx
ui/src/components/user.tsx

index 437d2cbd14afdc35cc25c1d9bcda51ff16ebb268..e71306d6c4bc4a842f1f95246ac9d15b60a03fe4 100644 (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() {
index abb603d5bd834d5db832659f5b803f6d35218a0f..3778ec90b7284fa2e66da4ba64e4d0ea268f21a0 100644 (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() {
index 0d0b0143db191fc4ec6239f55bd13bfb17fa0aa0..ad77e26705a164d8d97905f048365538ddccb35e 100644 (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;
   }