You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: website/karakara/views/queue.py
+5-3
Original file line number
Diff line number
Diff line change
@@ -145,11 +145,13 @@ def queue_add(request):
145
145
# If not admin, check additional restrictions
146
146
ifnotis_admin(request):
147
147
148
+
performer_name=request.params.get('performer_name').strip() # TODO: It would be good to ensure this value is writen to the db. However we cant modify the request.param dict directly. See creation of queueitem below
0 commit comments