This commit is contained in:
anlicheng 2023-08-09 16:44:45 +08:00
parent b0440db7f5
commit 4d2e053552

View File

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