From e78c196b6f78e9ed69a92d9d1491cc9f8eb0cdae Mon Sep 17 00:00:00 2001 From: Ben Cherry Date: Fri, 18 Oct 2024 15:25:40 -0700 Subject: [PATCH] fix --- livekit-ffi/protocol/ffi.proto | 2 +- livekit-ffi/src/livekit.proto.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/livekit-ffi/protocol/ffi.proto b/livekit-ffi/protocol/ffi.proto index 98947282..5a751798 100644 --- a/livekit-ffi/protocol/ffi.proto +++ b/livekit-ffi/protocol/ffi.proto @@ -188,7 +188,7 @@ message FfiEvent { GetSessionStatsCallback get_session_stats = 19; Panic panic = 20; PublishSipDtmfCallback publish_sip_dtmf = 21; - SendChatMessageCallback send_chat_message = 22; + SendChatMessageCallback chat_message = 22; PerformRpcCallback perform_rpc = 23; RegisterRpcMethodCallback register_rpc_method = 24; UnregisterRpcMethodCallback unregister_rpc_method = 25; diff --git a/livekit-ffi/src/livekit.proto.rs b/livekit-ffi/src/livekit.proto.rs index ca3ff7e0..269e0080 100644 --- a/livekit-ffi/src/livekit.proto.rs +++ b/livekit-ffi/src/livekit.proto.rs @@ -3957,7 +3957,7 @@ pub mod ffi_event { #[prost(message, tag="21")] PublishSipDtmf(super::PublishSipDtmfCallback), #[prost(message, tag="22")] - SendChatMessage(super::SendChatMessageCallback), + ChatMessage(super::SendChatMessageCallback), #[prost(message, tag="23")] PerformRpc(super::PerformRpcCallback), #[prost(message, tag="24")]