mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.encodings: Allow unassigned code points in ICU mode to match libidn behavior (fixes #1348)
This commit is contained in:
parent
06cf2e641a
commit
c42a786ec7
1 changed files with 1 additions and 1 deletions
|
@ -299,7 +299,7 @@ static int icu_stringprep_prep(lua_State *L, const UStringPrepProfile *profile)
|
|||
return 1;
|
||||
}
|
||||
|
||||
prepped_len = usprep_prepare(profile, unprepped, unprepped_len, prepped, 1024, 0, NULL, &err);
|
||||
prepped_len = usprep_prepare(profile, unprepped, unprepped_len, prepped, 1024, USPREP_ALLOW_UNASSIGNED, NULL, &err);
|
||||
|
||||
if(U_FAILURE(err)) {
|
||||
lua_pushnil(L);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue