X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Flib%2Fschedulers%2Fplugins-check-scheduler.ts;h=820c01693d96cc5e06a8df9f8f94f4e88a9e1aab;hb=0c9668f77901e7540e2c7045eb0f2974a4842a69;hp=06450fa01e2a935ad8deffbfe01e4556d2d4e9e3;hpb=619537426bbb9fcb9f2825068d5f907db0dc1f09;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/lib/schedulers/plugins-check-scheduler.ts b/server/lib/schedulers/plugins-check-scheduler.ts index 06450fa01..820c01693 100644 --- a/server/lib/schedulers/plugins-check-scheduler.ts +++ b/server/lib/schedulers/plugins-check-scheduler.ts @@ -33,7 +33,7 @@ export class PluginsCheckScheduler extends AbstractScheduler { const chunks = chunk(plugins, 10) for (const chunk of chunks) { // Find plugins according to their npm name - const pluginIndex: { [npmName: string]: PluginModel} = {} + const pluginIndex: { [npmName: string]: PluginModel } = {} for (const plugin of chunk) { pluginIndex[PluginModel.buildNpmName(plugin.name, plugin.type)] = plugin }