Skip to content

Commit 5e66176

Browse files
committed
boolean이 잘못 적용된 이슈 수정
1 parent 63ca36e commit 5e66176

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

session/viewsets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def list(self, request, *args, **kwargs) -> Response:
4242
return Response(
4343
data=pretalx_client.list_sessions(
4444
event_name=pretalx_event_name,
45-
only_confirmed=settings.DEBUG,
45+
only_confirmed=not settings.DEBUG,
4646
)["results"],
4747
)
4848

0 commit comments

Comments
 (0)