Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix mod_event_pusher_push MUC Light error #3526

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/event_pusher/mod_event_pusher_hook_translator.erl
Original file line number Diff line number Diff line change
Expand Up @@ -48,18 +48,18 @@ stop(Host) ->
%%--------------------------------------------------------------------
%% Hook callbacks
%%--------------------------------------------------------------------
-type routing_data() :: {jid:jid(), jid:jid(), mongoose_acc:t(), exml:element()}.
-spec filter_local_packet(drop) -> drop;
(routing_data()) -> routing_data().
(mongoose_hooks:filter_packet_acc()) -> mongoose_hooks:filter_packet_acc().
filter_local_packet(drop) ->
drop;
filter_local_packet({From, To = #jid{lserver = Host}, Acc0, Packet}) ->
filter_local_packet({From, To, Acc0, Packet}) ->
Acc = case chat_type(Acc0) of
false -> Acc0;
Type ->
Event = #chat_event{type = Type, direction = out,
from = From, to = To, packet = Packet},
NewAcc = mod_event_pusher:push_event(Acc0, Host, Event),
HostType = mongoose_acc:host_type(Acc0),
NewAcc = mod_event_pusher:push_event(Acc0, HostType, Event),
merge_acc(Acc0, NewAcc)
end,
{From, To, Acc, Packet}.
Expand Down