util.sasl.oauthbearer: Fix gs2-header parsing

This commit is contained in:
Matthew Wild 2023-03-21 14:01:03 +00:00
parent 6d526798bf
commit 2c87a0108b

View file

@ -11,7 +11,7 @@ local function oauthbearer(self, message)
return "failure", "not-authorized";
end
local gs2_header, kvpairs = message:match("^(n,[^,]*,),(.+)$");
local gs2_header, kvpairs = message:match("^(n,[^,]*,)(.+)$");
if not gs2_header then
return "failure", "malformed-request";
end