1
0
Fork 0
mirror of https://github.com/processone/ejabberd synced 2025-10-03 09:49:18 +02:00

mod_caps: Fix indentation

This commit is contained in:
Holger Weiss 2018-01-29 00:02:15 +01:00
parent 795efb2ee1
commit d0af61f488

View file

@ -145,7 +145,6 @@ user_receive_packet(Acc) ->
Acc. Acc.
-spec caps_stream_features([xmpp_element()], binary()) -> [xmpp_element()]. -spec caps_stream_features([xmpp_element()], binary()) -> [xmpp_element()].
caps_stream_features(Acc, MyHost) -> caps_stream_features(Acc, MyHost) ->
case gen_mod:is_loaded(MyHost, ?MODULE) of case gen_mod:is_loaded(MyHost, ?MODULE) of
true -> true ->
@ -154,7 +153,7 @@ caps_stream_features(Acc, MyHost) ->
Acc; Acc;
Hash -> Hash ->
[#caps{hash = <<"sha-1">>, node = ?EJABBERD_URI, [#caps{hash = <<"sha-1">>, node = ?EJABBERD_URI,
version = Hash}|Acc] version = Hash} | Acc]
end; end;
false -> false ->
Acc Acc