aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-04-22 09:50:20 +0200
committerChocobozzz <me@florianbigard.com>2022-04-22 09:50:20 +0200
commit961cbe4269e5f34639e29310fb3d90a6cb1bd6bc (patch)
tree06404c72c25a95238e7ef8a6bdfcb90d40c8649c /shared/models/videos
parent4ec52d04dcc5d664612331f8e08d7d90da990415 (diff)
downloadPeerTube-961cbe4269e5f34639e29310fb3d90a6cb1bd6bc.tar.gz
PeerTube-961cbe4269e5f34639e29310fb3d90a6cb1bd6bc.tar.zst
PeerTube-961cbe4269e5f34639e29310fb3d90a6cb1bd6bc.zip
Fix getting live by anonymous user
Diffstat (limited to 'shared/models/videos')
-rw-r--r--shared/models/videos/live/live-video.model.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/shared/models/videos/live/live-video.model.ts b/shared/models/videos/live/live-video.model.ts
index 2d3169941..d0f57f883 100644
--- a/shared/models/videos/live/live-video.model.ts
+++ b/shared/models/videos/live/live-video.model.ts
@@ -1,10 +1,10 @@
1import { LiveVideoLatencyMode } from './live-video-latency-mode.enum' 1import { LiveVideoLatencyMode } from './live-video-latency-mode.enum'
2 2
3export interface LiveVideo { 3export interface LiveVideo {
4 rtmpUrl: string 4 // If owner
5 rtmpsUrl: string 5 rtmpUrl?: string
6 6 rtmpsUrl?: string
7 streamKey: string 7 streamKey?: string
8 8
9 saveReplay: boolean 9 saveReplay: boolean
10 permanentLive: boolean 10 permanentLive: boolean