mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Fix for using wrong auth token as username (fixes Gajim login)
This commit is contained in:
parent
0f8ba47525
commit
3bac5046af
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ local function new_plain(onAuth, onSuccess, onFail, onWrite)
|
|||
local authorization = s_match(response, "([^&%z]+)")
|
||||
local authentication = s_match(response, "%z([^&%z]+)%z")
|
||||
local password = s_match(response, "%z[^&%z]+%z([^&%z]+)")
|
||||
if self.onAuth(authorization, password) == true then
|
||||
if self.onAuth(authentication, password) == true then
|
||||
self.onWrite(st.stanza("success", {xmlns = "urn:ietf:params:xml:ns:xmpp-sasl"}))
|
||||
self.onSuccess(authentication)
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue