diff options
Diffstat (limited to 'server')
-rw-r--r-- | server/models/user/user.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/models/user/user.ts b/server/models/user/user.ts index bfc9b3049..b6b120c92 100644 --- a/server/models/user/user.ts +++ b/server/models/user/user.ts | |||
@@ -781,12 +781,12 @@ export class UserModel extends Model<Partial<AttributesOnly<UserModel>>> { | |||
781 | `WHERE "account"."userId" = ${options.whereUserId} ${andWhere}` | 781 | `WHERE "account"."userId" = ${options.whereUserId} ${andWhere}` |
782 | 782 | ||
783 | const webtorrentFiles = 'SELECT "videoFile"."size" AS "size", "video"."id" AS "videoId" FROM "videoFile" ' + | 783 | const webtorrentFiles = 'SELECT "videoFile"."size" AS "size", "video"."id" AS "videoId" FROM "videoFile" ' + |
784 | 'INNER JOIN "video" ON "videoFile"."videoId" = "video"."id" ' + | 784 | 'INNER JOIN "video" ON "videoFile"."videoId" = "video"."id" AND "video"."isLive" IS FALSE ' + |
785 | videoChannelJoin | 785 | videoChannelJoin |
786 | 786 | ||
787 | const hlsFiles = 'SELECT "videoFile"."size" AS "size", "video"."id" AS "videoId" FROM "videoFile" ' + | 787 | const hlsFiles = 'SELECT "videoFile"."size" AS "size", "video"."id" AS "videoId" FROM "videoFile" ' + |
788 | 'INNER JOIN "videoStreamingPlaylist" ON "videoFile"."videoStreamingPlaylistId" = "videoStreamingPlaylist".id ' + | 788 | 'INNER JOIN "videoStreamingPlaylist" ON "videoFile"."videoStreamingPlaylistId" = "videoStreamingPlaylist".id ' + |
789 | 'INNER JOIN "video" ON "videoStreamingPlaylist"."videoId" = "video"."id" ' + | 789 | 'INNER JOIN "video" ON "videoStreamingPlaylist"."videoId" = "video"."id" AND "video"."isLive" IS FALSE ' + |
790 | videoChannelJoin | 790 | videoChannelJoin |
791 | 791 | ||
792 | return 'SELECT COALESCE(SUM("size"), 0) AS "total" ' + | 792 | return 'SELECT COALESCE(SUM("size"), 0) AS "total" ' + |