Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
bcherry committed Oct 23, 2024
1 parent 757ec34 commit d7511a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion livekit-ffi/protocol/rpc.proto
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ message RegisterRpcMethodResponse {}
message UnregisterRpcMethodResponse {}

message RpcMethodInvocationResponseResponse {
optional string error = 2;
optional string error = 1;
}

// FFI Callbacks
Expand Down
2 changes: 1 addition & 1 deletion livekit-ffi/src/livekit.proto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3622,7 +3622,7 @@ pub struct UnregisterRpcMethodResponse {
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RpcMethodInvocationResponseResponse {
#[prost(string, optional, tag="2")]
#[prost(string, optional, tag="1")]
pub error: ::core::option::Option<::prost::alloc::string::String>,
}
/// FFI Callbacks
Expand Down

0 comments on commit d7511a6

Please sign in to comment.