aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-edit/shared/video-edit.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+videos/+video-edit/shared/video-edit.component.ts')
-rw-r--r--client/src/app/+videos/+video-edit/shared/video-edit.component.ts9
1 files changed, 7 insertions, 2 deletions
diff --git a/client/src/app/+videos/+video-edit/shared/video-edit.component.ts b/client/src/app/+videos/+video-edit/shared/video-edit.component.ts
index 89687f35e..8ed54ce6b 100644
--- a/client/src/app/+videos/+video-edit/shared/video-edit.component.ts
+++ b/client/src/app/+videos/+video-edit/shared/video-edit.component.ts
@@ -165,7 +165,8 @@ export class VideoEditComponent implements OnInit, OnDestroy {
165 liveStreamKey: null, 165 liveStreamKey: null,
166 permanentLive: null, 166 permanentLive: null,
167 latencyMode: null, 167 latencyMode: null,
168 saveReplay: null 168 saveReplay: null,
169 replayPrivacy: null
169 } 170 }
170 171
171 this.formValidatorService.updateFormGroup( 172 this.formValidatorService.updateFormGroup(
@@ -303,10 +304,14 @@ export class VideoEditComponent implements OnInit, OnDestroy {
303 modalRef.componentInstance.captionEdited.subscribe(this.onCaptionEdited.bind(this)) 304 modalRef.componentInstance.captionEdited.subscribe(this.onCaptionEdited.bind(this))
304 } 305 }
305 306
306 isSaveReplayEnabled () { 307 isSaveReplayAllowed () {
307 return this.serverConfig.live.allowReplay 308 return this.serverConfig.live.allowReplay
308 } 309 }
309 310
311 isSaveReplayEnabled () {
312 return this.form.value['saveReplay'] === true
313 }
314
310 isPermanentLiveEnabled () { 315 isPermanentLiveEnabled () {
311 return this.form.value['permanentLive'] === true 316 return this.form.value['permanentLive'] === true
312 } 317 }