From 288c78eaae7c593f4d8f668302b13b138f6975c3 Mon Sep 17 00:00:00 2001 From: Rigel Kent Date: Thu, 5 Mar 2020 23:49:12 +0100 Subject: Always copy full actor handle in video-channels view --- client/src/app/shared/video-channel/video-channel.model.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'client/src/app/shared/video-channel/video-channel.model.ts') diff --git a/client/src/app/shared/video-channel/video-channel.model.ts b/client/src/app/shared/video-channel/video-channel.model.ts index 309b614ae..fec050cde 100644 --- a/client/src/app/shared/video-channel/video-channel.model.ts +++ b/client/src/app/shared/video-channel/video-channel.model.ts @@ -8,6 +8,7 @@ export class VideoChannel extends Actor implements ServerVideoChannel { support: string isLocal: boolean nameWithHost: string + nameWithHostForced: string ownerAccount?: Account ownerBy?: string ownerAvatarUrl?: string @@ -20,6 +21,7 @@ export class VideoChannel extends Actor implements ServerVideoChannel { this.support = hash.support this.isLocal = hash.isLocal this.nameWithHost = Actor.CREATE_BY_STRING(this.name, this.host) + this.nameWithHostForced = Actor.CREATE_BY_STRING(this.name, this.host, true) if (hash.ownerAccount) { this.ownerAccount = hash.ownerAccount -- cgit v1.2.3