25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-11-20 16:15:59 +01:00

Omit 'xmlns' field from 'feature_csi' record

The 'xmpp' library has been updated to omit the 'xmlns' field from the
'feature_csi' record.
This commit is contained in:
Holger Weiss 2018-06-04 23:05:11 +02:00
parent ba30ac8ce8
commit a4049d9418
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@
{fast_tls, ".*", {git, "https://github.com/processone/fast_tls", {tag, "1.0.22"}}},
{stringprep, ".*", {git, "https://github.com/processone/stringprep", {tag, "1.0.11"}}},
{fast_xml, ".*", {git, "https://github.com/processone/fast_xml", {tag, "1.1.30"}}},
{xmpp, ".*", {git, "https://github.com/processone/xmpp", "e26a39a"}},
{xmpp, ".*", {git, "https://github.com/processone/xmpp", "477ae88"}},
{fast_yaml, ".*", {git, "https://github.com/processone/fast_yaml", {tag, "1.0.14"}}},
{jiffy, ".*", {git, "https://github.com/davisp/jiffy", {tag, "0.14.8"}}},
{p1_oauth2, ".*", {git, "https://github.com/processone/p1_oauth2", {tag, "0.6.3"}}},

View File

@ -293,7 +293,7 @@ filter_other(Acc) ->
add_stream_feature(Features, Host) ->
case gen_mod:is_loaded(Host, ?MODULE) of
true ->
[#feature_csi{xmlns = <<"urn:xmpp:csi:0">>} | Features];
[#feature_csi{} | Features];
false ->
Features
end.