Skip to content

Commit

Permalink
Merge pull request #4424 from magfest/fix-magdev1332
Browse files Browse the repository at this point in the history
Fix guest-submitted panel apps
  • Loading branch information
kitsuta authored Nov 1, 2024
2 parents c53808b + ed91de6 commit 027ef5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions uber/site_sections/panels.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,8 @@ def process_panel_app(session, app, panelist, other_panelists_compiled, **params

message = check(app) or check_other_panelists(other_panelists_compiled) or ''
if not message:
for panelist in other_panelists_compiled:
panelist.app_id = app.id
for other_panelist in other_panelists_compiled:
other_panelist.app_id = app.id
session.add_all([app, panelist] + other_panelists_compiled)

return message

0 comments on commit 027ef5f

Please sign in to comment.