diff --git a/nextcloudappstore/core/models.py b/nextcloudappstore/core/models.py index 187211f642f..a4f5dd5ddb7 100644 --- a/nextcloudappstore/core/models.py +++ b/nextcloudappstore/core/models.py @@ -331,7 +331,7 @@ def is_server_bundled(self): :return: True if bundled, otherwise false """ - if self.id in [ + return self.id in [ "activity", "admin_audit", "app_api", @@ -381,13 +381,12 @@ def is_server_bundled(self): "updatenotification", "user_ldap", "user_status", + "users_picker", "viewer", "weather_status", "webhook_listeners", "workflowengine", - ]: - return True - return False + ] def is_outdated(self): """Checks if an app has been released in last 3 recent platform versions