We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f218d53 commit d183868Copy full SHA for d183868
lib/membrane_rtmp_plugin/rtmp/message_handler.ex
@@ -171,8 +171,8 @@ defmodule Membrane.RTMP.MessageHandler do
171
172
# According to ffmpeg's documentation, this command should prepare the server to receive media streams
173
# We are simply acknowledging the message
174
- defp do_handle_client_message(%Messages.FCPublish{}, _header, state) do
175
- %Messages.Anonymous{name: "onFCPublish", properties: []}
+ defp do_handle_client_message(%Messages.FCPublish{} = fc_publish, _header, state) do
+ %Messages.Anonymous{name: "onFCPublish", tx_id: fc_publish.tx_id, properties: []}
176
|> send_rtmp_payload(state.socket, chunk_stream_id: 3)
177
178
{:cont, state}
0 commit comments