aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-05-02 10:49:48 +0200
committerChocobozzz <me@florianbigard.com>2022-05-03 08:32:20 +0200
commit86c5229b4d726202378ef46854383bcafca22310 (patch)
tree871f1fe8b9f3043dcbc132d5771a32f41ab202b1 /client/src/app/+videos
parent98ebfa39500ce9dfbb782e43c4d269f9a2989698 (diff)
downloadPeerTube-86c5229b4d726202378ef46854383bcafca22310.tar.gz
PeerTube-86c5229b4d726202378ef46854383bcafca22310.tar.zst
PeerTube-86c5229b4d726202378ef46854383bcafca22310.zip
Save replay of permanent live in client
Diffstat (limited to 'client/src/app/+videos')
-rw-r--r--client/src/app/+videos/+video-edit/shared/video-edit.component.ts19
-rw-r--r--client/src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts2
2 files changed, 1 insertions, 20 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 a2399eafb..16b964482 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
@@ -180,7 +180,6 @@ export class VideoEditComponent implements OnInit, OnDestroy {
180 180
181 this.trackChannelChange() 181 this.trackChannelChange()
182 this.trackPrivacyChange() 182 this.trackPrivacyChange()
183 this.trackLivePermanentFieldChange()
184 183
185 this.formBuilt.emit() 184 this.formBuilt.emit()
186 } 185 }
@@ -457,24 +456,6 @@ export class VideoEditComponent implements OnInit, OnDestroy {
457 ) 456 )
458 } 457 }
459 458
460 private trackLivePermanentFieldChange () {
461 // We will update the "support" field depending on the channel
462 this.form.controls['permanentLive']
463 .valueChanges
464 .subscribe(
465 permanentLive => {
466 const saveReplayControl = this.form.controls['saveReplay']
467
468 if (permanentLive === true) {
469 saveReplayControl.setValue(false)
470 saveReplayControl.disable()
471 } else {
472 saveReplayControl.enable()
473 }
474 }
475 )
476 }
477
478 private updateSupportField (support: string) { 459 private updateSupportField (support: string) {
479 return this.form.patchValue({ support: support || '' }) 460 return this.form.patchValue({ support: support || '' })
480 } 461 }
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 fde8c884b..725120d16 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
@@ -71,7 +71,7 @@ export class VideoGoLiveComponent extends VideoSend implements OnInit, AfterView
71 nsfw: this.serverConfig.instance.isNSFW, 71 nsfw: this.serverConfig.instance.isNSFW,
72 waitTranscoding: true, 72 waitTranscoding: true,
73 permanentLive: this.firstStepPermanentLive, 73 permanentLive: this.firstStepPermanentLive,
74 saveReplay: this.firstStepPermanentLive === false && this.isReplayAllowed(), 74 saveReplay: this.isReplayAllowed(),
75 channelId: this.firstStepChannelId 75 channelId: this.firstStepChannelId
76 } 76 }
77 77