Fix optimize old videos script
authorChocobozzz <me@florianbigard.com>
Wed, 24 Jul 2019 07:34:06 +0000 (09:34 +0200)
committerChocobozzz <chocobozzz@cpy.re>
Wed, 24 Jul 2019 08:58:16 +0000 (10:58 +0200)
scripts/optimize-old-videos.ts
support/doc/plugins/guide.md

index 2c80f16bcf35e40384278b69d9f04d67e8a481b5..0b0e6037e4da688575e360f8122a2a195a8b71ad 100644 (file)
@@ -61,7 +61,7 @@ async function run () {
         if (originalDuration === newDuration) {
           console.log('Finished optimizing %s', basename(currentFile))
           await remove(backupFile)
-          return
+          continue
         }
 
         console.log('Failed to optimize %s, restoring original', basename(currentFile))
index 85e5f1e7d1803b28cea18facc1e9697f75801d1e..252cbc2e27c2554eacb17bacc37ebd7761288c2b 100644 (file)
@@ -281,10 +281,10 @@ registerHook({
   }
 })
 ```
-  * Don't try to require parent PeerTube modules, only use `peertubeHelpers`. If you need another helper or a specific, please [create an issue](https://github.com/Chocobozzz/PeerTube/issues/new)
+  * Don't try to require parent PeerTube modules, only use `peertubeHelpers`. If you need another helper or a specific hook, please [create an issue](https://github.com/Chocobozzz/PeerTube/issues/new)
   * Don't use PeerTube dependencies. Use your own :) 
 
-If your plugin is broken with a new PeerTube release, update your code and the `peertubeEngine` `package.json` field.
+If your plugin is broken with a new PeerTube release, update your code and the `peertubeEngine` field of your `package.json` field.
 This way, older PeerTube versions will still use your old plugin, and new PeerTube versions will use your updated plugin. 
 
 ### Spam/moderation plugin