mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.sasl.oauthbearer: Fix gs2-header parsing
This commit is contained in:
parent
6d526798bf
commit
2c87a0108b
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue