mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.session: Fix session id not include unauthed forever
This commit is contained in:
parent
049663349e
commit
392eac3c62
1 changed files with 2 additions and 1 deletions
|
@ -4,12 +4,13 @@ local logger = require "util.logger";
|
|||
local function new_session(typ)
|
||||
local session = {
|
||||
type = typ .. "_unauthed";
|
||||
base_type = typ;
|
||||
};
|
||||
return session;
|
||||
end
|
||||
|
||||
local function set_id(session)
|
||||
local id = session.type .. tostring(session):match("%x+$"):lower();
|
||||
local id = session.base_type .. tostring(session):match("%x+$"):lower();
|
||||
session.id = id;
|
||||
return session;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue