mirror of https://github.com/Chocobozzz/PeerTube
Don't take into account ended lives in concurrent lives check
parent
e14de000f9
commit
875f0610e4
|
@ -129,6 +129,7 @@ import { VideoShareModel } from './video-share'
|
|||
import { VideoStreamingPlaylistModel } from './video-streaming-playlist'
|
||||
import { VideoTagModel } from './video-tag'
|
||||
import { VideoViewModel } from './video-view'
|
||||
import { ne } from 'sequelize/types/lib/operators'
|
||||
|
||||
export enum ScopeNames {
|
||||
AVAILABLE_FOR_LIST_IDS = 'AVAILABLE_FOR_LIST_IDS',
|
||||
|
@ -1181,7 +1182,10 @@ export class VideoModel extends Model<VideoModel> {
|
|||
const options = {
|
||||
where: {
|
||||
remote: false,
|
||||
isLive: true
|
||||
isLive: true,
|
||||
state: {
|
||||
[Op.ne]: VideoState.LIVE_ENDED
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue