diff options
author | Chocobozzz <me@florianbigard.com> | 2022-06-21 11:16:38 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-06-21 11:23:32 +0200 |
commit | a91e9beb3fa775633fbac21275af39975c212cb0 (patch) | |
tree | f256cea2b08fd9af73c378672a66a0d2165e634a /server/models | |
parent | 35540f3806b9c7428ba2007928ca811d6caa7677 (diff) | |
download | PeerTube-a91e9beb3fa775633fbac21275af39975c212cb0.tar.gz PeerTube-a91e9beb3fa775633fbac21275af39975c212cb0.tar.zst PeerTube-a91e9beb3fa775633fbac21275af39975c212cb0.zip |
Update server dependencies
Diffstat (limited to 'server/models')
-rw-r--r-- | server/models/video/video-live-session.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/models/video/video-live-session.ts b/server/models/video/video-live-session.ts index 2b4cde9f8..836620872 100644 --- a/server/models/video/video-live-session.ts +++ b/server/models/video/video-live-session.ts | |||
@@ -110,7 +110,7 @@ export class VideoLiveSessionModel extends Model<Partial<AttributesOnly<VideoLiv | |||
110 | static listSessionsOfLiveForAPI (options: { videoId: number }) { | 110 | static listSessionsOfLiveForAPI (options: { videoId: number }) { |
111 | const { videoId } = options | 111 | const { videoId } = options |
112 | 112 | ||
113 | const query: FindOptions<VideoLiveSessionModel> = { | 113 | const query: FindOptions<AttributesOnly<VideoLiveSessionModel>> = { |
114 | where: { | 114 | where: { |
115 | liveVideoId: videoId | 115 | liveVideoId: videoId |
116 | }, | 116 | }, |