From dda34e8644b598f996d7c611624e6cbc622aea78 Mon Sep 17 00:00:00 2001 From: Edward Ly Date: Thu, 5 Mar 2026 08:31:53 -0800 Subject: [PATCH] fix: add users_picker app to bundled list Signed-off-by: Edward Ly --- nextcloudappstore/core/models.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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