25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-11-24 16:23:40 +01:00

Cosmetic change, remove useless case

This commit is contained in:
Christophe Romain 2017-10-25 11:48:56 +02:00
parent 7c1b4d0fcd
commit 8028a9545a

View File

@ -447,10 +447,7 @@ disco_identity(Host, Node, From) ->
{result, _} ->
{result, [#identity{category = <<"pubsub">>, type = <<"pep">>},
#identity{category = <<"pubsub">>, type = <<"leaf">>,
name = case get_option(Options, title) of
false -> <<>>;
Title -> Title
end}]};
name = get_option(Options, title, <<>>)}]};
_ ->
{result, []}
end
@ -514,10 +511,7 @@ disco_items(Host, <<>>, From) ->
{result, _} ->
[#disco_item{node = Node,
jid = jid:make(Host),
name = case get_option(Options, title) of
false -> <<>>;
Title -> Title
end} | Acc];
name = get_option(Options, title, <<>>)} | Acc];
_ ->
Acc
end