aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-09-04 10:47:52 +0200
committerChocobozzz <me@florianbigard.com>2020-09-04 10:47:52 +0200
commit30b1e1060371f5f2578910f3f4a2cdf95fe78274 (patch)
treed35abe9abfdaf40dbd5d5d0cc31bb6fc94308f69 /client/src/app/+videos
parent865af3fd7b192bda44dea65c6df125f233424f3e (diff)
downloadPeerTube-30b1e1060371f5f2578910f3f4a2cdf95fe78274.tar.gz
PeerTube-30b1e1060371f5f2578910f3f4a2cdf95fe78274.tar.zst
PeerTube-30b1e1060371f5f2578910f3f4a2cdf95fe78274.zip
Fix privacy/channel select on upload
Diffstat (limited to 'client/src/app/+videos')
-rw-r--r--client/src/app/+videos/+video-edit/video-add-components/video-upload.component.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/+videos/+video-edit/video-add-components/video-upload.component.ts b/client/src/app/+videos/+video-edit/video-add-components/video-upload.component.ts
index 416b655a4..32a17052a 100644
--- a/client/src/app/+videos/+video-edit/video-add-components/video-upload.component.ts
+++ b/client/src/app/+videos/+video-edit/video-add-components/video-upload.component.ts
@@ -185,9 +185,9 @@ export class VideoUploadComponent extends VideoSend implements OnInit, OnDestroy
185 185
186 this.form.patchValue({ 186 this.form.patchValue({
187 name, 187 name,
188 privacy, 188 privacy: this.firstStepPrivacyId,
189 nsfw, 189 nsfw,
190 channelId, 190 channelId: this.firstStepChannelId,
191 previewfile: this.previewfileUpload 191 previewfile: this.previewfileUpload
192 }) 192 })
193 193