aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/models/video/video-channel.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/models/video/video-channel.ts')
-rw-r--r--server/models/video/video-channel.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/models/video/video-channel.ts b/server/models/video/video-channel.ts
index 3cb4a33b9..1f4604f1d 100644
--- a/server/models/video/video-channel.ts
+++ b/server/models/video/video-channel.ts
@@ -153,8 +153,8 @@ toActivityPubObject = function (this: VideoChannelInstance) {
153 uuid: this.uuid, 153 uuid: this.uuid,
154 content: this.description, 154 content: this.description,
155 name: this.name, 155 name: this.name,
156 published: this.createdAt, 156 published: this.createdAt.toISOString(),
157 updated: this.updatedAt 157 updated: this.updatedAt.toISOString()
158 } 158 }
159 159
160 return json 160 return json