diff options
Diffstat (limited to 'server/models/video/video-format-utils.ts')
-rw-r--r-- | server/models/video/video-format-utils.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/server/models/video/video-format-utils.ts b/server/models/video/video-format-utils.ts index 64771b1ff..89992a5a8 100644 --- a/server/models/video/video-format-utils.ts +++ b/server/models/video/video-format-utils.ts | |||
@@ -7,7 +7,7 @@ import { | |||
7 | ActivityUrlObject, | 7 | ActivityUrlObject, |
8 | VideoTorrentObject | 8 | VideoTorrentObject |
9 | } from '../../../shared/models/activitypub/objects' | 9 | } from '../../../shared/models/activitypub/objects' |
10 | import { MIMETYPES, THUMBNAILS_SIZE, WEBSERVER } from '../../initializers/constants' | 10 | import { MIMETYPES, WEBSERVER } from '../../initializers/constants' |
11 | import { VideoCaptionModel } from './video-caption' | 11 | import { VideoCaptionModel } from './video-caption' |
12 | import { | 12 | import { |
13 | getVideoCommentsActivityPubUrl, | 13 | getVideoCommentsActivityPubUrl, |
@@ -326,10 +326,10 @@ function videoModelToActivityPubObject (video: VideoModel): VideoTorrentObject { | |||
326 | subtitleLanguage, | 326 | subtitleLanguage, |
327 | icon: { | 327 | icon: { |
328 | type: 'Image', | 328 | type: 'Image', |
329 | url: video.getThumbnailUrl(baseUrlHttp), | 329 | url: video.getThumbnail().getUrl(), |
330 | mediaType: 'image/jpeg', | 330 | mediaType: 'image/jpeg', |
331 | width: THUMBNAILS_SIZE.width, | 331 | width: video.getThumbnail().width, |
332 | height: THUMBNAILS_SIZE.height | 332 | height: video.getThumbnail().height |
333 | }, | 333 | }, |
334 | url, | 334 | url, |
335 | likes: getVideoLikesActivityPubUrl(video), | 335 | likes: getVideoLikesActivityPubUrl(video), |