1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-03 17:59:37 +02:00

Fix type conflict

This commit is contained in:
Chocobozzz 2021-12-24 10:40:51 +01:00
parent d17c7b4e8c
commit c7cdac4409
No known key found for this signature in database
GPG key ID: 583A612D890159BE
6 changed files with 24 additions and 24 deletions

View file

@ -8,7 +8,7 @@ import {
PeerTubePlugin,
PeerTubePluginIndex,
PeertubePluginIndexList,
PluginPackageJson,
PluginPackageJSON,
PluginTranslation,
PluginType,
PublicServerSetting,
@ -245,7 +245,7 @@ export class PluginsCommand extends AbstractCommand {
return writeJSON(path, json)
}
getPackageJSON (npmName: string): Promise<PluginPackageJson> {
getPackageJSON (npmName: string): Promise<PluginPackageJSON> {
const path = this.getPackageJSONPath(npmName)
return readJSON(path)