From 7e73f07131a6738b299311448ab4491eb532838a Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 20 Mar 2019 10:12:31 +0100 Subject: Improve comment deletion message --- client/src/app/videos/+video-watch/comment/video-comment.model.ts | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'client/src/app/videos/+video-watch/comment/video-comment.model.ts') diff --git a/client/src/app/videos/+video-watch/comment/video-comment.model.ts b/client/src/app/videos/+video-watch/comment/video-comment.model.ts index 824fb24c3..3ed3ddcc7 100644 --- a/client/src/app/videos/+video-watch/comment/video-comment.model.ts +++ b/client/src/app/videos/+video-watch/comment/video-comment.model.ts @@ -1,6 +1,7 @@ import { Account as AccountInterface } from '../../../../../../shared/models/actors' import { VideoComment as VideoCommentServerModel } from '../../../../../../shared/models/videos/video-comment.model' import { Actor } from '@app/shared/actor/actor.model' +import { getAbsoluteAPIUrl } from '@app/shared/misc/utils' export class VideoComment implements VideoCommentServerModel { id: number @@ -16,6 +17,8 @@ export class VideoComment implements VideoCommentServerModel { by: string accountAvatarUrl: string + isLocal: boolean + constructor (hash: VideoCommentServerModel) { this.id = hash.id this.url = hash.url @@ -30,5 +33,9 @@ export class VideoComment implements VideoCommentServerModel { this.by = Actor.CREATE_BY_STRING(this.account.name, this.account.host) this.accountAvatarUrl = Actor.GET_ACTOR_AVATAR_URL(this.account) + + const absoluteAPIUrl = getAbsoluteAPIUrl() + const thisHost = new URL(absoluteAPIUrl).host + this.isLocal = this.account.host.trim() === thisHost } } -- cgit v1.2.3