diff options
author | Chocobozzz <me@florianbigard.com> | 2021-04-28 15:59:46 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-04-28 15:59:46 +0200 |
commit | 7d026caf683e42fd57a243a3b52a5e4f476fbb4e (patch) | |
tree | af2b695e2470f709727f3ff24828198b7d0fd0fe /client/src/app/shared/shared-actor-image | |
parent | 746018f6b81b40e8858303662ac9ec5ce59ac6eb (diff) | |
download | PeerTube-7d026caf683e42fd57a243a3b52a5e4f476fbb4e.tar.gz PeerTube-7d026caf683e42fd57a243a3b52a5e4f476fbb4e.tar.zst PeerTube-7d026caf683e42fd57a243a3b52a5e4f476fbb4e.zip |
Remove avatarUrl from models
Diffstat (limited to 'client/src/app/shared/shared-actor-image')
-rw-r--r-- | client/src/app/shared/shared-actor-image/actor-avatar.component.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/shared/shared-actor-image/actor-avatar.component.ts b/client/src/app/shared/shared-actor-image/actor-avatar.component.ts index 6bb3b65fa..71e020cba 100644 --- a/client/src/app/shared/shared-actor-image/actor-avatar.component.ts +++ b/client/src/app/shared/shared-actor-image/actor-avatar.component.ts | |||
@@ -73,7 +73,7 @@ export class ActorAvatarComponent { | |||
73 | 73 | ||
74 | get avatarUrl () { | 74 | get avatarUrl () { |
75 | if (this.account) return Account.GET_ACTOR_AVATAR_URL(this.account) | 75 | if (this.account) return Account.GET_ACTOR_AVATAR_URL(this.account) |
76 | if (this.channel) return VideoChannel.GET_ACTOR_AVATAR_URL(this.account) | 76 | if (this.channel) return VideoChannel.GET_ACTOR_AVATAR_URL(this.channel) |
77 | 77 | ||
78 | return '' | 78 | return '' |
79 | } | 79 | } |