From: Chocobozzz Date: Tue, 22 Nov 2016 21:34:59 +0000 (+0100) Subject: Server: add extname video information to remote pods X-Git-Tag: v0.0.1-alpha~598 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8f21730250f7c4acc6f64f693ef7748c7f354831;p=oweals%2Fpeertube.git Server: add extname video information to remote pods --- diff --git a/server/models/video.js b/server/models/video.js index 527652230..de3d9f644 100644 --- a/server/models/video.js +++ b/server/models/video.js @@ -243,7 +243,8 @@ function toRemoteJSON (callback) { thumbnailBase64: new Buffer(thumbnailData).toString('base64'), tags: self.tags, createdDate: self.createdDate, - podHost: self.podHost + podHost: self.podHost, + extname: self.extname } return callback(null, remoteVideo)