diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-06-06 14:15:03 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-06-06 14:15:03 +0200 |
commit | be587647f98a4b83ca06a61fe55c7ac5d60927c6 (patch) | |
tree | 8a28a1cb9c9a06d80803ecd3fa00aa6767bb3f8b /server/lib/videos.js | |
parent | 8483b2216454afdb88f6aa53cad5eecd8c394bc0 (diff) | |
download | PeerTube-be587647f98a4b83ca06a61fe55c7ac5d60927c6.tar.gz PeerTube-be587647f98a4b83ca06a61fe55c7ac5d60927c6.tar.zst PeerTube-be587647f98a4b83ca06a61fe55c7ac5d60927c6.zip |
Add tags support to server
Diffstat (limited to 'server/lib/videos.js')
-rw-r--r-- | server/lib/videos.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/lib/videos.js b/server/lib/videos.js index 154c31ef9..e0db0e1d5 100644 --- a/server/lib/videos.js +++ b/server/lib/videos.js | |||
@@ -153,7 +153,8 @@ function createRemoteVideoObjects (videos, callback) { | |||
153 | magnetUri: video.magnetUri, | 153 | magnetUri: video.magnetUri, |
154 | podUrl: video.podUrl, | 154 | podUrl: video.podUrl, |
155 | duration: video.duration, | 155 | duration: video.duration, |
156 | thumbnail: thumbnailName | 156 | thumbnail: thumbnailName, |
157 | tags: video.tags | ||
157 | } | 158 | } |
158 | remoteVideos.push(params) | 159 | remoteVideos.push(params) |
159 | 160 | ||