Fix update host script
authorChocobozzz <florian.bigard@gmail.com>
Wed, 8 Feb 2017 19:34:01 +0000 (20:34 +0100)
committerChocobozzz <florian.bigard@gmail.com>
Wed, 8 Feb 2017 19:34:01 +0000 (20:34 +0100)
scripts/update-host.js
server/models/video.js

index 91051e68b400d85e843bce8fe340a8ebb7da516e..18e35386c9b3840b91aa656b459cd0eb8c835447 100755 (executable)
@@ -26,9 +26,9 @@ db.init(true, function () {
       if (err) throw err
 
       videos.forEach(function (video) {
-        const torrentName = video._id + '.torrent'
+        const torrentName = video.id + '.torrent'
         const torrentPath = constants.CONFIG.STORAGE.TORRENTS_DIR + torrentName
-        const filename = video._id + video.extname
+        const filename = video.id + video.extname
 
         const parsed = parseTorrent(fs.readFileSync(torrentPath))
         parsed.announce = [ constants.CONFIG.WEBSERVER.WS + '://' + constants.CONFIG.WEBSERVER.HOST + '/tracker/socket' ]
index 742150d69e3f59fd58f996978f715c7c2c6ca882..d0fd61eb49ecdaa75e671eebda8a33a2c6715e12 100644 (file)
@@ -414,7 +414,7 @@ function getDurationFromFile (videoPath, callback) {
 }
 
 function list (callback) {
-  return this.find().asCallback()
+  return this.findAll().asCallback(callback)
 }
 
 function listForApi (start, count, sort, callback) {