mirror of https://github.com/Chocobozzz/PeerTube
Use correct privacy when publishing lives
We don't really need to use a private privacy until the user submits the second step, because it requires an additional and intentional step (streaming the live in the RTMP URL) for the userpull/6610/head
parent
e740e2ea3f
commit
06934fee4e
|
@ -106,7 +106,7 @@ export class VideoGoLiveComponent extends VideoSend implements OnInit, AfterView
|
||||||
|
|
||||||
const video: LiveVideoCreate = {
|
const video: LiveVideoCreate = {
|
||||||
name,
|
name,
|
||||||
privacy: this.highestPrivacy,
|
privacy: this.firstStepPrivacyId,
|
||||||
nsfw: this.serverConfig.instance.isNSFW,
|
nsfw: this.serverConfig.instance.isNSFW,
|
||||||
waitTranscoding: true,
|
waitTranscoding: true,
|
||||||
permanentLive: this.firstStepPermanentLive,
|
permanentLive: this.firstStepPermanentLive,
|
||||||
|
|
Loading…
Reference in New Issue