Skip to content

Commit cfbad8f

Browse files
committed
fixing the recording issue
1 parent a12d039 commit cfbad8f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sdk/communication/azure-communication-callautomation/azure/communication/callautomation/aio/_call_automation_client_async.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -705,11 +705,11 @@ async def start_recording(
705705
channel_affinity: List["ChannelAffinity"] = kwargs.pop("channel_affinity", None) or []
706706
channel_affinity_internal = [c._to_generated() for c in channel_affinity]
707707
call_locator = build_call_locator(
708-
args,
709708
kwargs.pop("call_locator", None),
710709
kwargs.pop("server_call_id", None),
711710
kwargs.pop("group_call_id", None),
712-
kwargs.pop("room_id", None)
711+
kwargs.pop("room_id", None),
712+
args
713713
)
714714
external_storage = build_external_storage(kwargs.pop("recording_storage", None))
715715
start_recording_request = StartCallRecordingRequest(

0 commit comments

Comments
 (0)