diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-05-05 14:29:58 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-05-05 14:29:58 +0200 |
commit | c24ac1c18e26b6a24a4d294744908fb0c53ddf3c (patch) | |
tree | e66ede727fdc92d446f0db829e0592b5f0a2cdd0 /client/src/app/videos/shared | |
parent | 9eee32fc34ece1cc5e624ae15d81bfede68be33f (diff) | |
download | PeerTube-c24ac1c18e26b6a24a4d294744908fb0c53ddf3c.tar.gz PeerTube-c24ac1c18e26b6a24a4d294744908fb0c53ddf3c.tar.zst PeerTube-c24ac1c18e26b6a24a4d294744908fb0c53ddf3c.zip |
Fix unset video language on video update
Diffstat (limited to 'client/src/app/videos/shared')
-rw-r--r-- | client/src/app/videos/shared/video.service.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/client/src/app/videos/shared/video.service.ts b/client/src/app/videos/shared/video.service.ts index ba83c72fd..ef683dea6 100644 --- a/client/src/app/videos/shared/video.service.ts +++ b/client/src/app/videos/shared/video.service.ts | |||
@@ -81,14 +81,17 @@ export class VideoService { | |||
81 | } | 81 | } |
82 | 82 | ||
83 | updateVideo(video: Video) { | 83 | updateVideo(video: Video) { |
84 | const language = video.language ? video.language : null; | ||
85 | |||
84 | const body = { | 86 | const body = { |
85 | name: video.name, | 87 | name: video.name, |
86 | category: video.category, | 88 | category: video.category, |
87 | licence: video.licence, | 89 | licence: video.licence, |
88 | language: video.language, | 90 | language, |
89 | description: video.description, | 91 | description: video.description, |
90 | tags: video.tags | 92 | tags: video.tags |
91 | }; | 93 | }; |
94 | |||
92 | const headers = new Headers({ 'Content-Type': 'application/json' }); | 95 | const headers = new Headers({ 'Content-Type': 'application/json' }); |
93 | const options = new RequestOptions({ headers: headers }); | 96 | const options = new RequestOptions({ headers: headers }); |
94 | 97 | ||