diff --git a/plinth/modules/jsxc/__init__.py b/plinth/modules/jsxc/__init__.py index a5c4d10d1..39194eef4 100644 --- a/plinth/modules/jsxc/__init__.py +++ b/plinth/modules/jsxc/__init__.py @@ -80,4 +80,5 @@ class JSXCApp(app_module.App): def setup(self, old_version): """Install and configure the app.""" super().setup(old_version) - self.enable() + if not old_version: + self.enable()