From 1198edf4bb06ce5f1668b97cf9ca8fb483fe3f41 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 2 Aug 2019 10:53:36 +0200 Subject: Fix user notifications on new follow --- server/lib/plugins/plugin-manager.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'server/lib/plugins') diff --git a/server/lib/plugins/plugin-manager.ts b/server/lib/plugins/plugin-manager.ts index c9beae268..444162a03 100644 --- a/server/lib/plugins/plugin-manager.ts +++ b/server/lib/plugins/plugin-manager.ts @@ -408,9 +408,7 @@ export class PluginManager implements ServerHook { private async regeneratePluginGlobalCSS () { await this.resetCSSGlobalFile() - for (const key of Object.keys(this.getRegisteredPlugins())) { - const plugin = this.registeredPlugins[key] - + for (const plugin of this.getRegisteredPlugins()) { await this.addCSSToGlobalFile(plugin.path, plugin.css) } } -- cgit v1.2.3