aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/actor
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-01-10 10:30:08 +0100
committerChocobozzz <me@florianbigard.com>2020-01-10 10:30:39 +0100
commit62fca05de45848f3241c1b078df51d79692ebfee (patch)
treea096364c5d64fc7377bfc82182623258aa7ba9ba /client/src/app/shared/actor
parentdce659fa7cb2b0f814e454a7a5c6860f9c37b39e (diff)
downloadPeerTube-62fca05de45848f3241c1b078df51d79692ebfee.tar.gz
PeerTube-62fca05de45848f3241c1b078df51d79692ebfee.tar.zst
PeerTube-62fca05de45848f3241c1b078df51d79692ebfee.zip
Fix default avatar URL
Diffstat (limited to 'client/src/app/shared/actor')
-rw-r--r--client/src/app/shared/actor/actor.model.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/shared/actor/actor.model.ts b/client/src/app/shared/actor/actor.model.ts
index 9cc51b948..0e5060f67 100644
--- a/client/src/app/shared/actor/actor.model.ts
+++ b/client/src/app/shared/actor/actor.model.ts
@@ -20,7 +20,7 @@ export abstract class Actor implements ActorServer {
20 20
21 if (actor && actor.avatar) return absoluteAPIUrl + actor.avatar.path 21 if (actor && actor.avatar) return absoluteAPIUrl + actor.avatar.path
22 22
23 this.GET_DEFAULT_AVATAR_URL() 23 return this.GET_DEFAULT_AVATAR_URL()
24 } 24 }
25 25
26 static GET_DEFAULT_AVATAR_URL () { 26 static GET_DEFAULT_AVATAR_URL () {