From 6fe405f5a8393b9d3fe2dae01f3971e34d2dce00 Mon Sep 17 00:00:00 2001 From: rimu <3310831+rimu@users.noreply.github.com> Date: Fri, 19 Jan 2024 15:19:31 +1300 Subject: [PATCH] oops --- app/community/routes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/community/routes.py b/app/community/routes.py index c6d0e30f..069f5279 100644 --- a/app/community/routes.py +++ b/app/community/routes.py @@ -453,8 +453,8 @@ def add_post(actor): return render_template('community/add_post.html', title=_('Add post to community'), form=form, community=community, images_disabled=images_disabled, markdown_editor=True, low_bandwidth=request.cookies.get('low_bandwidth', '0') == '1', moderating_communities=moderating_communities(current_user.get_id()), - joined_communities = joined_communities(current_user.id, - inoculation=inoculation[randint(0, len(inoculation) - 1)]) + joined_communities = joined_communities(current_user.id), + inoculation=inoculation[randint(0, len(inoculation) - 1)] )