aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/core/plugins/plugin.service.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/core/plugins/plugin.service.ts')
-rw-r--r--client/src/app/core/plugins/plugin.service.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/core/plugins/plugin.service.ts b/client/src/app/core/plugins/plugin.service.ts
index e24468da5..da5114048 100644
--- a/client/src/app/core/plugins/plugin.service.ts
+++ b/client/src/app/core/plugins/plugin.service.ts
@@ -70,9 +70,9 @@ export class PluginService implements ClientHook {
70 } 70 }
71 71
72 initializePlugins () { 72 initializePlugins () {
73 this.server.configLoaded 73 this.server.getConfig()
74 .subscribe(() => { 74 .subscribe(config => {
75 this.plugins = this.server.getConfig().plugin.registered 75 this.plugins = config.plugin.registered
76 76
77 this.buildScopeStruct() 77 this.buildScopeStruct()
78 78