diff options
Diffstat (limited to 'client/src/app/shared/users')
-rw-r--r-- | client/src/app/shared/users/user-notification.model.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/shared/users/user-notification.model.ts b/client/src/app/shared/users/user-notification.model.ts index c5996a8a1..3bb53ff45 100644 --- a/client/src/app/shared/users/user-notification.model.ts +++ b/client/src/app/shared/users/user-notification.model.ts | |||
@@ -136,8 +136,8 @@ export class UserNotification implements UserNotificationServer { | |||
136 | return '/videos/watch/' + video.uuid | 136 | return '/videos/watch/' + video.uuid |
137 | } | 137 | } |
138 | 138 | ||
139 | private buildAccountUrl (account: { name: string }) { | 139 | private buildAccountUrl (account: { name: string, host: string }) { |
140 | return '/accounts/' + account.name | 140 | return '/accounts/' + Actor.CREATE_BY_STRING(account.name, account.host) |
141 | } | 141 | } |
142 | 142 | ||
143 | private buildVideoImportUrl () { | 143 | private buildVideoImportUrl () { |