From: Evgeniy Khramtsov Date: Fri, 25 Aug 2017 09:47:33 +0000 (+0300) Subject: Fix a typo X-Git-Tag: 17.09~57 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f7e8d287d5109f5ff769b23d531a207439e71f76;p=ejabberd Fix a typo --- diff --git a/src/xmpp_stream_in.erl b/src/xmpp_stream_in.erl index 253adbf95..d9be3d4f7 100644 --- a/src/xmpp_stream_in.erl +++ b/src/xmpp_stream_in.erl @@ -671,7 +671,7 @@ process_stream_established(#{stream_state := StateName} = State) when StateName == disconnected; StateName == established -> State; process_stream_established(#{mod := Mod} = State) -> - State1 = State#{stream_authenticated := true, + State1 = State#{stream_authenticated => true, stream_state => established, stream_timeout => infinity}, try Mod:handle_stream_established(State1)