Skip to content
This repository has been archived by the owner on Apr 4, 2023. It is now read-only.

fix(plugins): Change path to plugins index.json file #1154

Merged
merged 2 commits into from
Jun 23, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ export class ChePluginServiceImpl implements ChePluginService {
* @return list of available plugins
*/
private async loadPluginList(registry: ChePluginRegistry): Promise<ChePluginMetadataInternal[]> {
const registryURI = registry.uri + '/plugins';
const registryURI = registry.uri + '/plugins/';
const registryContent = (await this.httpService.get(registryURI)) || '{}';
return JSON.parse(registryContent) as ChePluginMetadataInternal[];
}
Expand Down