mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 02:09:37 +02:00
Add plugin table migration table
This commit is contained in:
parent
6691c52280
commit
587568e1cc
6 changed files with 51 additions and 4 deletions
|
@ -125,6 +125,13 @@ export class PluginManager implements ServerHook {
|
|||
try {
|
||||
await this.registerPluginOrTheme(plugin)
|
||||
} catch (err) {
|
||||
// Try to unregister the plugin
|
||||
try {
|
||||
await this.unregister(PluginModel.buildNpmName(plugin.name, plugin.type))
|
||||
} catch {
|
||||
// we don't care if we cannot unregister it
|
||||
}
|
||||
|
||||
logger.error('Cannot register plugin %s, skipping.', plugin.name, { err })
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue