Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions nextcloudappstore/core/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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
Expand Down
Loading