diff options
author | Chocobozzz <me@florianbigard.com> | 2018-06-14 11:25:19 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-06-14 11:25:19 +0200 |
commit | 4dae00e68b71ee3725a94eef891f3c43e10040b0 (patch) | |
tree | dda4315d5e51b7b41e5599fe5e30a6f291f13314 /server/models/video | |
parent | 3d5de919f382bb86b00678530ee22ae52c2add6b (diff) | |
download | PeerTube-4dae00e68b71ee3725a94eef891f3c43e10040b0.tar.gz PeerTube-4dae00e68b71ee3725a94eef891f3c43e10040b0.tar.zst PeerTube-4dae00e68b71ee3725a94eef891f3c43e10040b0.zip |
Use local object URLs for feeds
Diffstat (limited to 'server/models/video')
-rw-r--r-- | server/models/video/video-comment.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/models/video/video-comment.ts b/server/models/video/video-comment.ts index 86766a5d1..f93d81d67 100644 --- a/server/models/video/video-comment.ts +++ b/server/models/video/video-comment.ts | |||
@@ -348,7 +348,7 @@ export class VideoCommentModel extends Model<VideoCommentModel> { | |||
348 | where: {}, | 348 | where: {}, |
349 | include: [ | 349 | include: [ |
350 | { | 350 | { |
351 | attributes: [ 'name' ], | 351 | attributes: [ 'name', 'uuid' ], |
352 | model: VideoModel.unscoped(), | 352 | model: VideoModel.unscoped(), |
353 | required: true | 353 | required: true |
354 | } | 354 | } |