diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-12-05 15:01:47 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-12-05 15:12:03 +0100 |
commit | 6bafac54bf375cd60f1c06f6afdc648e0e19743d (patch) | |
tree | 15bb5c0de684993a3301a9d86431569b2188d224 /client/src/app/shared/users | |
parent | be6a4802326b1748e85c0d6fdadf06e70e6ecbb0 (diff) | |
download | PeerTube-6bafac54bf375cd60f1c06f6afdc648e0e19743d.tar.gz PeerTube-6bafac54bf375cd60f1c06f6afdc648e0e19743d.tar.zst PeerTube-6bafac54bf375cd60f1c06f6afdc648e0e19743d.zip |
Fix missing default avatar
Diffstat (limited to 'client/src/app/shared/users')
-rw-r--r-- | client/src/app/shared/users/user.model.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/shared/users/user.model.ts b/client/src/app/shared/users/user.model.ts index 220362ef0..9364ae721 100644 --- a/client/src/app/shared/users/user.model.ts +++ b/client/src/app/shared/users/user.model.ts | |||
@@ -54,6 +54,6 @@ export class User implements UserServerModel { | |||
54 | getAvatarPath () { | 54 | getAvatarPath () { |
55 | if (this.account && this.account.avatar) return this.account.avatar.path | 55 | if (this.account && this.account.avatar) return this.account.avatar.path |
56 | 56 | ||
57 | return '/assets/images/default-avatar.png' | 57 | return '/client/assets/images/default-avatar.png' |
58 | } | 58 | } |
59 | } | 59 | } |