mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-21 07:56:16 -04:00
Log when a sessionID in checkAccess is not found
This commit is contained in:
parent
30cae9097f
commit
911bfb30e4
1 changed files with 1 additions and 0 deletions
|
@ -133,6 +133,7 @@ exports.checkAccess = function (padID, sessionCookie, token, password, callback)
|
||||||
//skip session if it doesn't exist
|
//skip session if it doesn't exist
|
||||||
if(err && err.message == "sessionID does not exist")
|
if(err && err.message == "sessionID does not exist")
|
||||||
{
|
{
|
||||||
|
authLogger.debug("Auth failed: unknown session");
|
||||||
callback();
|
callback();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue