From c41f16837d19fbd67067043bf237ea47ecd57c36 Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 15 Nov 2021 02:06:38 +0100 Subject: [PATCH] remove blocking condition --- InvenTree/plugin/apps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/plugin/apps.py b/InvenTree/plugin/apps.py index d777d932c3..a4b75afdd7 100644 --- a/InvenTree/plugin/apps.py +++ b/InvenTree/plugin/apps.py @@ -176,7 +176,7 @@ class PluginAppConfig(AppConfig): def activate_integration_app(self, plugins): from common.models import InvenTreeSetting - if settings.PLUGIN_TESTING or (settings.INTEGRATION_APPS_LOADING and InvenTreeSetting.get_setting('ENABLE_PLUGINS_APP')): + if settings.PLUGIN_TESTING or (InvenTreeSetting.get_setting('ENABLE_PLUGINS_APP')): logger.info('Registering IntegrationPlugin apps') apps_changed = False