mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_smacks: Fix previous commit for case of no session found
This commit is contained in:
parent
fff5a91e37
commit
19429a5e7d
1 changed files with 1 additions and 1 deletions
|
@ -587,7 +587,7 @@ function do_resume(session, stanza)
|
|||
|
||||
local id = stanza.attr.previd;
|
||||
local original_session = session_registry[registry_key(session, id)];
|
||||
if original_session.destroyed then
|
||||
if original_session and original_session.destroyed then
|
||||
original_session.log("error", "Tried to resume a destroyed session. This should not happen! %s", debug.traceback());
|
||||
session_registry[registry_key(session, id)] = nil;
|
||||
original_session = nil;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue