1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 19:42:24 +02:00

Check latest plugins version with config interval

This commit is contained in:
Chocobozzz 2019-07-16 15:03:00 +02:00 committed by Chocobozzz
parent e0ce715a1d
commit d133f38582
5 changed files with 9 additions and 7 deletions

View file

@ -53,7 +53,7 @@ export class PluginsCheckScheduler extends AbstractScheduler {
plugin.latestVersion = result.latestVersion
await plugin.save()
logger.info('Plugin %s has a new latest version %s.', PluginModel.buildNpmName(plugin.name, plugin.type), plugin.latestVersion)
logger.info('Plugin %s has a new latest version %s.', result.npmName, plugin.latestVersion)
}
}
} catch (err) {