Skip to content

Commit

Permalink
Merge pull request #329 from camptocamp/fix
Browse files Browse the repository at this point in the history
Versions: Fix for Unsupported versions
  • Loading branch information
sbrunner authored Jun 7, 2024
2 parents 378cfc1 + fa0ff9f commit d870aac
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion github_app_geo_project/module/versions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,8 @@ async def process(
if len(raw) > max(version_index, support_index):
version = raw[version_index]
support = raw[support_index]
status.versions[version].support = support
if version not in status.versions:
status.versions[version].support = support

versions = status.versions
for version in list(versions.keys()):
Expand Down

0 comments on commit d870aac

Please sign in to comment.