mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
Don't export password attribute when it's empty (it's invalid)(#3705)
This commit is contained in:
parent
68762146d7
commit
91c9b0446c
@ -166,6 +166,7 @@ export_user(User, Server, Fd) ->
|
||||
LServer = jid:nameprep(Server),
|
||||
{PassPlain, PassScram} = case ejabberd_auth:password_format(LServer) of
|
||||
scram -> {[], [format_scram_password(Password)]};
|
||||
_ when Password == <<"">> -> {[], []};
|
||||
_ -> {[{<<"password">>, Password}], []}
|
||||
end,
|
||||
Els =
|
||||
|
Loading…
Reference in New Issue
Block a user