diff options
Diffstat (limited to 'server/models/videos.js')
-rw-r--r-- | server/models/videos.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/server/models/videos.js b/server/models/videos.js index 13ef2295a..e02158be7 100644 --- a/server/models/videos.js +++ b/server/models/videos.js | |||
@@ -22,7 +22,8 @@ const videosSchema = mongoose.Schema({ | |||
22 | description: String, | 22 | description: String, |
23 | magnetUri: String, | 23 | magnetUri: String, |
24 | podUrl: String, | 24 | podUrl: String, |
25 | author: String | 25 | author: String, |
26 | duration: Number | ||
26 | }) | 27 | }) |
27 | const VideosDB = mongoose.model('videos', videosSchema) | 28 | const VideosDB = mongoose.model('videos', videosSchema) |
28 | 29 | ||
@@ -72,7 +73,8 @@ function addRemotes (videos, callback) { | |||
72 | namePath: null, | 73 | namePath: null, |
73 | description: video.description, | 74 | description: video.description, |
74 | magnetUri: video.magnetUri, | 75 | magnetUri: video.magnetUri, |
75 | podUrl: video.podUrl | 76 | podUrl: video.podUrl, |
77 | duration: video.duration | ||
76 | } | 78 | } |
77 | 79 | ||
78 | to_add.push(params) | 80 | to_add.push(params) |