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)] )