diff options
-rw-r--r-- | client/src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts | 9 | ||||
-rw-r--r-- | client/src/app/+videos/+video-edit/video-update.component.ts | 9 |
2 files changed, 14 insertions, 4 deletions
diff --git a/client/src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts b/client/src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts index 904492994..ba612f553 100644 --- a/client/src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts +++ b/client/src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts | |||
@@ -137,9 +137,14 @@ export class VideoGoLiveComponent extends VideoSend implements OnInit, AfterView | |||
137 | video.uuid = this.videoUUID | 137 | video.uuid = this.videoUUID |
138 | video.shortUUID = this.videoShortUUID | 138 | video.shortUUID = this.videoShortUUID |
139 | 139 | ||
140 | const saveReplay = this.form.value.saveReplay | ||
141 | const replaySettings = saveReplay | ||
142 | ? { privacy: this.form.value.replayPrivacy } | ||
143 | : undefined | ||
144 | |||
140 | const liveVideoUpdate: LiveVideoUpdate = { | 145 | const liveVideoUpdate: LiveVideoUpdate = { |
141 | saveReplay: this.form.value.saveReplay, | 146 | saveReplay, |
142 | replaySettings: { privacy: this.form.value.replayPrivacy }, | 147 | replaySettings, |
143 | latencyMode: this.form.value.latencyMode, | 148 | latencyMode: this.form.value.latencyMode, |
144 | permanentLive: this.form.value.permanentLive | 149 | permanentLive: this.form.value.permanentLive |
145 | } | 150 | } |
diff --git a/client/src/app/+videos/+video-edit/video-update.component.ts b/client/src/app/+videos/+video-edit/video-update.component.ts index b70270261..ad71162b8 100644 --- a/client/src/app/+videos/+video-edit/video-update.component.ts +++ b/client/src/app/+videos/+video-edit/video-update.component.ts | |||
@@ -127,9 +127,14 @@ export class VideoUpdateComponent extends FormReactive implements OnInit { | |||
127 | switchMap(() => { | 127 | switchMap(() => { |
128 | if (!this.liveVideo) return of(undefined) | 128 | if (!this.liveVideo) return of(undefined) |
129 | 129 | ||
130 | const saveReplay = !!this.form.value.saveReplay | ||
131 | const replaySettings = saveReplay | ||
132 | ? { privacy: this.form.value.replayPrivacy } | ||
133 | : undefined | ||
134 | |||
130 | const liveVideoUpdate: LiveVideoUpdate = { | 135 | const liveVideoUpdate: LiveVideoUpdate = { |
131 | saveReplay: !!this.form.value.saveReplay, | 136 | saveReplay, |
132 | replaySettings: { privacy: this.form.value.replayPrivacy }, | 137 | replaySettings, |
133 | permanentLive: !!this.form.value.permanentLive, | 138 | permanentLive: !!this.form.value.permanentLive, |
134 | latencyMode: this.form.value.latencyMode | 139 | latencyMode: this.form.value.latencyMode |
135 | } | 140 | } |