Move to eslint
[oweals/peertube.git] / server / lib / video-comment.ts
index b8074e6d20b8ff7d166a5b63981b390e89461c6e..fe83d23e7b1c766646a0dbc2a4909024f72b56e2 100644 (file)
@@ -7,9 +7,9 @@ import { sendCreateVideoComment } from './activitypub/send'
 import { MAccountDefault, MComment, MCommentOwnerVideoReply, MVideoFullLight } from '../typings/models'
 
 async function createVideoComment (obj: {
-  text: string,
-  inReplyToComment: MComment | null,
-  video: MVideoFullLight,
+  text: string
+  inReplyToComment: MComment | null
+  video: MVideoFullLight
   account: MAccountDefault
 }, t: Sequelize.Transaction) {
   let originCommentId: number | null = null