mod_storage_xep0227: Fix conversion of SCRAM into internal format (fix #1741)

Looks like this function was a copy of hex_to_base64 without modifying
it to do its inverse.
This commit is contained in:
Kim Alvefur 2022-04-08 15:09:19 +02:00
parent fc6f400997
commit e626855282

View file

@ -72,7 +72,7 @@ local function hex_to_base64(s)
end
local function base64_to_hex(s)
return base64.encode(hex.decode(s));
return hex.encode(base64.decode(s));
end
local handlers = {};