]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/models/video/video-comment.ts
Fix lint
[github/Chocobozzz/PeerTube.git] / server / models / video / video-comment.ts
index c465eb3e706585533c4bf5742f1b0610e4b52311..90625d987a9f6436ecf125f3360ee9a8fe544a1b 100644 (file)
@@ -444,11 +444,11 @@ export class VideoCommentModel extends Model<VideoCommentModel> {
     }
     const accountWhere = accountId
       ? {
-          [Op.and]: {
-            ...accountExclusion,
-            [Op.eq]: accountId
-          }
+        [Op.and]: {
+          ...accountExclusion,
+          [Op.eq]: accountId
         }
+      }
       : accountExclusion
 
     const videoChannelWhere = videoChannelId ? { id: videoChannelId } : undefined