Skip to content

Commit a112d0b

Browse files
committed
fix(models): bump minimum Nextcloud version for outdated app check
Signed-off-by: Edward Ly <[email protected]>
1 parent e53e57e commit a112d0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nextcloudappstore/core/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ def is_outdated(self):
403403
if not release_versions:
404404
return True
405405
max_release_version = max(map(lambda v: Version(pad_max_inc_version(v)), release_versions))
406-
min_recent_version = Version(pad_min_version("27")) # current Nextcloud version - 2
406+
min_recent_version = Version(pad_min_version("30")) # current Nextcloud version - 2
407407
return max_release_version < min_recent_version
408408

409409
def _latest(self, releases):

0 commit comments

Comments
 (0)