Skip to content

Commit

Permalink
Merge pull request #33 from ynput/bugfix/26-web-actions-show-all-appl…
Browse files Browse the repository at this point in the history
…ications-regardless-of-their-state

Webactions: Skip disabled applications
  • Loading branch information
iLLiCiTiT authored Sep 19, 2024
2 parents cf87297 + b45f321 commit 78f9ef4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions server/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ async def get_action_manifests(addon, project_name, variant):
app_settings = addon_settings["applications"]
app_groups = app_settings.pop("additional_apps")
for group_name, value in app_settings.items():
if not value["enabled"]:
continue
value["name"] = group_name
app_groups.append(value)

Expand Down

0 comments on commit 78f9ef4

Please sign in to comment.