aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rwxr-xr-xscripts/ci.sh2
-rw-r--r--server/models/video/video.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/ci.sh b/scripts/ci.sh
index e29b07ad7..238eba371 100755
--- a/scripts/ci.sh
+++ b/scripts/ci.sh
@@ -60,7 +60,7 @@ elif [ "$1" = "api-2" ]; then
60 usersFiles=$(findTestFiles server/tests/api/users) 60 usersFiles=$(findTestFiles server/tests/api/users)
61 liveFiles=$(findTestFiles server/tests/api/live) 61 liveFiles=$(findTestFiles server/tests/api/live)
62 62
63 MOCHA_PARALLEL=true runTest 2 $serverFiles $usersFiles liveFiles 63 MOCHA_PARALLEL=true runTest 2 $serverFiles $usersFiles $liveFiles
64elif [ "$1" = "api-3" ]; then 64elif [ "$1" = "api-3" ]; then
65 npm run build:server 65 npm run build:server
66 66
diff --git a/server/models/video/video.ts b/server/models/video/video.ts
index 8e71f8c32..60f295056 100644
--- a/server/models/video/video.ts
+++ b/server/models/video/video.ts
@@ -964,7 +964,7 @@ export class VideoModel extends Model<VideoModel> {
964 } 964 }
965 ] 965 ]
966 }, 966 },
967 VideoLiveModel, 967 VideoLiveModel.unscoped(),
968 VideoFileModel, 968 VideoFileModel,
969 TagModel 969 TagModel
970 ] 970 ]