Skip to content

Commit

Permalink
fix(appname): Plugins url request
Browse files Browse the repository at this point in the history
  • Loading branch information
German Muzquiz committed Sep 29, 2020
1 parent c071082 commit 513d0d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/scripts/modules/core/src/plugins/plugin.registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export class PluginRegistry {
public loadPluginManifestFromGate() {
const source = 'gate';
const uri = '/plugins/deck/plugin-manifest.json';
const loadPromise = API.one(...uri.split('/').slice(1))
const loadPromise = API.one('plugins', 'deck', 'plugin-manifest.json')
.get()
.catch((error: any) => {
console.error(`Failed to load ${uri} from ${source}`);
Expand Down

0 comments on commit 513d0d4

Please sign in to comment.