diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2010-10-09 15:04:16 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2010-10-09 15:04:16 +0200 |
commit | fe4a256c05727f43c6c793b620b1638b88c830b3 (patch) | |
tree | b37076f8fa9f1817ceae99989d2878a58c944ef8 /src/core/ephraim_conv.erl | |
parent | e6d184833a8c46d3ecd3a407c66c561bb0d47123 (diff) | |
download | ephraim-master.tar ephraim-master.zip |
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), |