Skip to content

Commit

Permalink
Merge pull request #1470 from nextcloud/fix/is_outdated
Browse files Browse the repository at this point in the history
consider "integrations" always up to date
  • Loading branch information
AndyScherzinger authored Sep 5, 2024
2 parents 088c8ce + aec3f57 commit 2e3022b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions nextcloudappstore/core/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,8 @@ def is_outdated(self):
:return: True if not compatible, otherwise false
"""

if self.is_integration:
return False
release_versions = list(self.latest_releases_by_platform_v().keys())
if not release_versions:
return True
Expand Down

0 comments on commit 2e3022b

Please sign in to comment.