diff options
author | Chocobozzz <me@florianbigard.com> | 2020-09-04 10:47:52 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-09-04 10:47:52 +0200 |
commit | 30b1e1060371f5f2578910f3f4a2cdf95fe78274 (patch) | |
tree | d35abe9abfdaf40dbd5d5d0cc31bb6fc94308f69 /client/src/app/+videos | |
parent | 865af3fd7b192bda44dea65c6df125f233424f3e (diff) | |
download | PeerTube-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.ts | 4 |
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 | ||