mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-07-26 03:24:43 +00:00
Reverted unintended change.
This commit is contained in:
parent
06d3066783
commit
4cf4a0d68d
1 changed files with 2 additions and 1 deletions
|
|
@ -689,7 +689,8 @@ class BulkUpdateChannelMembershipAPIView(APIView):
|
|||
|
||||
if serializer.is_valid():
|
||||
updates = serializer.validated_data['channels']
|
||||
channel_ids = [entry['channel_id'] for entry['channel_id'] in updates]
|
||||
channel_ids = [entry['channel_id'] for entry in updates]
|
||||
|
||||
|
||||
memberships = ChannelProfileMembership.objects.filter(
|
||||
channel_profile=channel_profile,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue