diff options
Diffstat (limited to 'src/core/ephraim_conv.erl')
-rw-r--r-- | src/core/ephraim_conv.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/ephraim_conv.erl b/src/core/ephraim_conv.erl index d6ab742..1c51067 100644 --- a/src/core/ephraim_conv.erl +++ b/src/core/ephraim_conv.erl @@ -15,7 +15,7 @@ -spec start_link(pid(), pid(), pid(), binary()) -> ok. start_link(EventManager, Conn, Roster, JID) -> - gen_event:notify(EventManager, {view_update, {conversation, JID, new}}), + advanced_event:notify(EventManager, {view_update, {conversation, JID, new}}), {jid,MyJID} = ephraim_config:get(jid), gen_server:start_link(?MODULE, #conv_state{event_manager=EventManager,connection=Conn,roster=Roster,my_jid=list_to_binary(MyJID),jid=JID}, []). @@ -36,7 +36,7 @@ handle_call(_Msg, _From, State) -> update_view(State, From, Type, Body) -> Alias = ephraim_roster:get_alias(State#conv_state.roster, From), - gen_event:notify(State#conv_state.event_manager, {view_update, {conversation, State#conv_state.jid, {message, Alias, Type, Body}}}). + advanced_event:notify(State#conv_state.event_manager, {view_update, {conversation, State#conv_state.jid, {message, Alias, Type, Body}}}). handle_cast({received_message, From, Type, Body}, State) -> update_view(State, From, Type, Body), |