aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-edit
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-02-20 18:01:38 +0100
committerChocobozzz <me@florianbigard.com>2018-02-20 18:16:13 +0100
commit61b3e146e16e997ea539cd4610af10d4b681e04a (patch)
tree65937b83e8d01a6401b8cecd1fcf34de15aed1da /client/src/app/videos/+video-edit
parent71578f317e881f35ec905e9136f77740bbd7e7aa (diff)
downloadPeerTube-61b3e146e16e997ea539cd4610af10d4b681e04a.tar.gz
PeerTube-61b3e146e16e997ea539cd4610af10d4b681e04a.tar.zst
PeerTube-61b3e146e16e997ea539cd4610af10d4b681e04a.zip
Add ability to import videos from all supported youtube-dl sites
Diffstat (limited to 'client/src/app/videos/+video-edit')
-rw-r--r--client/src/app/videos/+video-edit/video-update.component.ts2
1 files changed, 1 insertions, 1 deletions
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 0ef3c0259..d97e00a3a 100644
--- a/client/src/app/videos/+video-edit/video-update.component.ts
+++ b/client/src/app/videos/+video-edit/video-update.component.ts
@@ -61,7 +61,7 @@ export class VideoUpdateComponent extends FormReactive implements OnInit {
61 .switchMap(video => { 61 .switchMap(video => {
62 return this.videoService 62 return this.videoService
63 .loadCompleteDescription(video.descriptionPath) 63 .loadCompleteDescription(video.descriptionPath)
64 .map(description => Object.assign(video, { description })) 64 .map(description => Object.assign(video, { description }))
65 }) 65 })
66 .subscribe( 66 .subscribe(
67 video => { 67 video => {