]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Fix unregister default value
authorChocobozzz <me@florianbigard.com>
Fri, 5 May 2023 12:47:24 +0000 (14:47 +0200)
committerChocobozzz <me@florianbigard.com>
Fri, 5 May 2023 12:47:24 +0000 (14:47 +0200)
server/lib/plugins/plugin-manager.ts

index ca72753663541507cf2329912dedcbfaff934190..eab0b39780d9bcc8bc702028c086b3036c602555 100644 (file)
@@ -410,7 +410,7 @@ export class PluginManager implements ServerHook {
     npmName: string
     unregister?: boolean // default true
   }) {
-    const { npmName, unregister } = options
+    const { npmName, unregister = true } = options
 
     logger.info('Uninstalling plugin %s.', npmName)