diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-09-08 17:10:57 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-09-08 17:11:32 +0200 |
commit | 096641566f2663076c3b0d5a1947ecb7efb29fc0 (patch) | |
tree | 44ab2dc5848966d3597269ed565d4cc9ba2fc6f2 /server/controllers | |
parent | e95561cdf195d2926e1856ed285c2b86960bc86f (diff) | |
download | PeerTube-096641566f2663076c3b0d5a1947ecb7efb29fc0.tar.gz PeerTube-096641566f2663076c3b0d5a1947ecb7efb29fc0.tar.zst PeerTube-096641566f2663076c3b0d5a1947ecb7efb29fc0.zip |
Convert real world script to typescript
Diffstat (limited to 'server/controllers')
-rw-r--r-- | server/controllers/api/remote/videos.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/server/controllers/api/remote/videos.ts b/server/controllers/api/remote/videos.ts index f7ee0356a..9dd4afdb5 100644 --- a/server/controllers/api/remote/videos.ts +++ b/server/controllers/api/remote/videos.ts | |||
@@ -351,11 +351,9 @@ function updateRemoteVideo (videoAttributesToUpdate: RemoteVideoUpdateData, from | |||
351 | videoInstance.set('language', videoAttributesToUpdate.language) | 351 | videoInstance.set('language', videoAttributesToUpdate.language) |
352 | videoInstance.set('nsfw', videoAttributesToUpdate.nsfw) | 352 | videoInstance.set('nsfw', videoAttributesToUpdate.nsfw) |
353 | videoInstance.set('description', videoAttributesToUpdate.description) | 353 | videoInstance.set('description', videoAttributesToUpdate.description) |
354 | videoInstance.set('infoHash', videoAttributesToUpdate.infoHash) | ||
355 | videoInstance.set('duration', videoAttributesToUpdate.duration) | 354 | videoInstance.set('duration', videoAttributesToUpdate.duration) |
356 | videoInstance.set('createdAt', videoAttributesToUpdate.createdAt) | 355 | videoInstance.set('createdAt', videoAttributesToUpdate.createdAt) |
357 | videoInstance.set('updatedAt', videoAttributesToUpdate.updatedAt) | 356 | videoInstance.set('updatedAt', videoAttributesToUpdate.updatedAt) |
358 | videoInstance.set('extname', videoAttributesToUpdate.extname) | ||
359 | videoInstance.set('views', videoAttributesToUpdate.views) | 357 | videoInstance.set('views', videoAttributesToUpdate.views) |
360 | videoInstance.set('likes', videoAttributesToUpdate.likes) | 358 | videoInstance.set('likes', videoAttributesToUpdate.likes) |
361 | videoInstance.set('dislikes', videoAttributesToUpdate.dislikes) | 359 | videoInstance.set('dislikes', videoAttributesToUpdate.dislikes) |