Skip to content

Commit 318805a

Browse files
committed
fmt
1 parent c457ec5 commit 318805a

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

livekit-api/src/services/connector.rs

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,9 @@ impl ConnectorClient {
126126
whatsapp_to_phone_number: to_phone_number.into(),
127127
whatsapp_api_key: api_key.into(),
128128
whatsapp_cloud_api_version: cloud_api_version.into(),
129-
whatsapp_biz_opaque_callback_data: options.biz_opaque_callback_data.unwrap_or_default(),
129+
whatsapp_biz_opaque_callback_data: options
130+
.biz_opaque_callback_data
131+
.unwrap_or_default(),
130132
room_name: options.room_name.unwrap_or_default(),
131133
agents: options.agents.unwrap_or_default(),
132134
participant_identity: options.participant_identity.unwrap_or_default(),
@@ -228,7 +230,9 @@ impl ConnectorClient {
228230
whatsapp_api_key: api_key.into(),
229231
whatsapp_cloud_api_version: cloud_api_version.into(),
230232
whatsapp_call_id: call_id.into(),
231-
whatsapp_biz_opaque_callback_data: options.biz_opaque_callback_data.unwrap_or_default(),
233+
whatsapp_biz_opaque_callback_data: options
234+
.biz_opaque_callback_data
235+
.unwrap_or_default(),
232236
sdp: Some(sdp),
233237
room_name: options.room_name.unwrap_or_default(),
234238
agents: options.agents.unwrap_or_default(),
@@ -280,4 +284,4 @@ impl ConnectorClient {
280284
.await
281285
.map_err(Into::into)
282286
}
283-
}
287+
}

0 commit comments

Comments
 (0)