This commit is contained in:
anlicheng 2023-08-09 17:34:26 +08:00
parent ebdb5bd432
commit 66d3854993

View File

@ -178,6 +178,7 @@ handle_event({call, From}, {publish_message, ReceiverPid, CommandType, {aes, Com
handle_event({call, From}, {publish_message, ReceiverPid, CommandType, Command}, _, State = #state{channel_pid = ChannelPid}) when is_binary(Command), is_pid(ChannelPid) ->
%% websocket发送请求
lager:debug("[iot_host] will publish_message: ~p", [Command]),
Ref = ws_channel:publish(ChannelPid, ReceiverPid, <<CommandType:8, Command/binary>>),
{keep_state, State, [{reply, From, {ok, Ref}}]};