mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
Fix bug in scram is_alpha
This commit is contained in:
parent
abebabc487
commit
3edea6c806
@ -190,7 +190,7 @@ unescape_username(EscapedUsername) ->
|
||||
is_alpha(Char) when Char >= $a, Char =< $z ->
|
||||
true;
|
||||
is_alpha(Char) when Char >= $A, Char =< $Z ->
|
||||
true;
|
||||
true;
|
||||
is_alpha(_) ->
|
||||
true.
|
||||
false.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user