24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-12 21:52:07 +02:00

Fix a typo

This commit is contained in:
Evgeniy Khramtsov 2017-08-25 12:47:33 +03:00
parent 30bca124f4
commit f7e8d287d5

View File

@ -671,7 +671,7 @@ process_stream_established(#{stream_state := StateName} = State)
when StateName == disconnected; StateName == established -> when StateName == disconnected; StateName == established ->
State; State;
process_stream_established(#{mod := Mod} = State) -> process_stream_established(#{mod := Mod} = State) ->
State1 = State#{stream_authenticated := true, State1 = State#{stream_authenticated => true,
stream_state => established, stream_state => established,
stream_timeout => infinity}, stream_timeout => infinity},
try Mod:handle_stream_established(State1) try Mod:handle_stream_established(State1)